pub enum AnomalySeverity {
Warning,
Critical,
}Expand description
Severity of an anomaly.
Variants§
Warning
|z| > 2.0 — mild deviation, worth logging.
Critical
|z| > 3.0 — significant deviation, action may be needed.
Implementations§
Trait Implementations§
Source§impl Clone for AnomalySeverity
impl Clone for AnomalySeverity
impl Copy for AnomalySeverity
Source§impl Debug for AnomalySeverity
impl Debug for AnomalySeverity
Source§impl<'de> Deserialize<'de> for AnomalySeverity
impl<'de> Deserialize<'de> for AnomalySeverity
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
impl Eq for AnomalySeverity
Source§impl PartialEq for AnomalySeverity
impl PartialEq for AnomalySeverity
Source§impl Serialize for AnomalySeverity
impl Serialize for AnomalySeverity
impl StructuralPartialEq for AnomalySeverity
Auto Trait Implementations§
impl Freeze for AnomalySeverity
impl RefUnwindSafe for AnomalySeverity
impl Send for AnomalySeverity
impl Sync for AnomalySeverity
impl Unpin for AnomalySeverity
impl UnsafeUnpin for AnomalySeverity
impl UnwindSafe for AnomalySeverity
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