diff options
| author | Daniel Schadt <kingdread@gmx.de> | 2020-07-24 14:09:51 +0200 | 
|---|---|---|
| committer | Daniel Schadt <kingdread@gmx.de> | 2020-07-24 14:09:51 +0200 | 
| commit | f6717fc45188870341e9b6185ef5f3102f5a96ae (patch) | |
| tree | 8f64fe7372de4e9254c68db54fcc1969db951052 /src/analyzers/raids/w4.rs | |
| parent | 06590a174a4b3707b9048f3669ad17702902b601 (diff) | |
| download | evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.tar.gz evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.tar.bz2 evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.zip  | |
more documentation
Diffstat (limited to 'src/analyzers/raids/w4.rs')
| -rw-r--r-- | src/analyzers/raids/w4.rs | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/src/analyzers/raids/w4.rs b/src/analyzers/raids/w4.rs index e753e49..310b26f 100644 --- a/src/analyzers/raids/w4.rs +++ b/src/analyzers/raids/w4.rs @@ -16,6 +16,10 @@ pub struct Cairn<'log> {  }  impl<'log> Cairn<'log> { +    /// Create a new [`Cairn`] analyzer for the given log. +    /// +    /// **Do not** use this method unless you know what you are doing. Instead, rely on +    /// [`Log::analyzer`]!      pub fn new(log: &'log Log) -> Self {          Cairn { log }      } @@ -46,6 +50,10 @@ pub struct MursaatOverseer<'log> {  }  impl<'log> MursaatOverseer<'log> { +    /// Create a new [`MursaatOverseer`] analyzer for the given log. +    /// +    /// **Do not** use this method unless you know what you are doing. Instead, rely on +    /// [`Log::analyzer`]!      pub fn new(log: &'log Log) -> Self {          MursaatOverseer { log }      } @@ -78,6 +86,10 @@ pub struct Samarog<'log> {  }  impl<'log> Samarog<'log> { +    /// Create a new [`Samarog`] analyzer for the given log. +    /// +    /// **Do not** use this method unless you know what you are doing. Instead, rely on +    /// [`Log::analyzer`]!      pub fn new(log: &'log Log) -> Self {          Samarog { log }      } @@ -110,6 +122,10 @@ pub struct Deimos<'log> {  }  impl<'log> Deimos<'log> { +    /// Create a new [`Deimos`] analyzer for the given log. +    /// +    /// **Do not** use this method unless you know what you are doing. Instead, rely on +    /// [`Log::analyzer`]!      pub fn new(log: &'log Log) -> Self {          Deimos { log }      }  | 
