pub enum AnomalyClass {
Point,
Contextual,
Collective,
Distributional,
Structural,
Multivariate,
Cadence,
}Expand description
The top-level anomaly taxonomy. A detector declares which class it produces; the CLI groups and reports findings by class so an agent can reason about kind of deviation, not just “something is off.”
Variants§
Point
A single value far from its column’s distribution (z-score, MAD, IQR, ESD).
Contextual
A value anomalous only in context (seasonal/time-of-day deviation).
Collective
A subsequence or group that is jointly anomalous (change-point, runs).
Distributional
The distribution itself shifted vs. a baseline (KS, PSI, KL, chi²).
Structural
Schema/type/shape violation (type drift, missing field, cardinality blowup).
Multivariate
A multivariate point isolated in feature space (isolation forest, LOF, DBSCAN).
Cadence
Suspiciously regular timing (metronomic cadence).
Implementations§
Source§impl AnomalyClass
impl AnomalyClass
Trait Implementations§
Source§impl Clone for AnomalyClass
impl Clone for AnomalyClass
Source§fn clone(&self) -> AnomalyClass
fn clone(&self) -> AnomalyClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnomalyClass
impl Debug for AnomalyClass
Source§impl<'de> Deserialize<'de> for AnomalyClass
impl<'de> Deserialize<'de> for AnomalyClass
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AnomalyClass
impl PartialEq for AnomalyClass
Source§fn eq(&self, other: &AnomalyClass) -> bool
fn eq(&self, other: &AnomalyClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnomalyClass
impl Serialize for AnomalyClass
impl Copy for AnomalyClass
impl Eq for AnomalyClass
impl StructuralPartialEq for AnomalyClass
Auto Trait Implementations§
impl Freeze for AnomalyClass
impl RefUnwindSafe for AnomalyClass
impl Send for AnomalyClass
impl Sync for AnomalyClass
impl Unpin for AnomalyClass
impl UnsafeUnpin for AnomalyClass
impl UnwindSafe for AnomalyClass
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more