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/w5.rs | |
parent | 06590a174a4b3707b9048f3669ad17702902b601 (diff) | |
download | evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.tar.gz evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.tar.bz2 evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.zip |
more documentation
Diffstat (limited to 'src/analyzers/raids/w5.rs')
-rw-r--r-- | src/analyzers/raids/w5.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/analyzers/raids/w5.rs b/src/analyzers/raids/w5.rs index b9668b7..578cea8 100644 --- a/src/analyzers/raids/w5.rs +++ b/src/analyzers/raids/w5.rs @@ -18,6 +18,10 @@ pub struct SoullessHorror<'log> { } impl<'log> SoullessHorror<'log> { + /// Create a new [`SoullessHorror`] 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 { SoullessHorror { log } } @@ -60,6 +64,10 @@ pub struct Dhuum<'log> { } impl<'log> Dhuum<'log> { + /// Create a new [`Dhuum`] 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 { Dhuum { log } } |