aboutsummaryrefslogtreecommitdiff
path: root/src/analyzers/raids/w7.rs
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2020-07-24 14:09:51 +0200
committerDaniel Schadt <kingdread@gmx.de>2020-07-24 14:09:51 +0200
commitf6717fc45188870341e9b6185ef5f3102f5a96ae (patch)
tree8f64fe7372de4e9254c68db54fcc1969db951052 /src/analyzers/raids/w7.rs
parent06590a174a4b3707b9048f3669ad17702902b601 (diff)
downloadevtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.tar.gz
evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.tar.bz2
evtclib-f6717fc45188870341e9b6185ef5f3102f5a96ae.zip
more documentation
Diffstat (limited to 'src/analyzers/raids/w7.rs')
-rw-r--r--src/analyzers/raids/w7.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/analyzers/raids/w7.rs b/src/analyzers/raids/w7.rs
index 480c303..bdfadd6 100644
--- a/src/analyzers/raids/w7.rs
+++ b/src/analyzers/raids/w7.rs
@@ -15,6 +15,10 @@ pub struct CardinalAdina<'log> {
}
impl<'log> CardinalAdina<'log> {
+ /// Create a new [`CardinalAdina`] 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 {
CardinalAdina { log }
}
@@ -47,6 +51,10 @@ pub struct CardinalSabir<'log> {
}
impl<'log> CardinalSabir<'log> {
+ /// Create a new [`CardinalSabir`] 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 {
CardinalSabir { log }
}
@@ -77,6 +85,10 @@ pub struct QadimThePeerless<'log> {
}
impl<'log> QadimThePeerless<'log> {
+ /// Create a new [`QadimThePeerless`] 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 {
QadimThePeerless { log }
}