aboutsummaryrefslogtreecommitdiff
path: root/src/analyzers/raids/w5.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/analyzers/raids/w5.rs')
-rw-r--r--src/analyzers/raids/w5.rs8
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 }
}