pub enum AnomalyImpact {
Harmful,
Beneficial,
}Expand description
Whether this anomaly is harmful (i.e., the deviation is in the “bad” direction for this dimension).
Variants§
Harmful
The deviation is in the harmful direction.
Beneficial
The deviation is in the beneficial direction.
Implementations§
Trait Implementations§
Source§impl Clone for AnomalyImpact
impl Clone for AnomalyImpact
impl Copy for AnomalyImpact
Source§impl Debug for AnomalyImpact
impl Debug for AnomalyImpact
Source§impl<'de> Deserialize<'de> for AnomalyImpact
impl<'de> Deserialize<'de> for AnomalyImpact
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 AnomalyImpact
Source§impl PartialEq for AnomalyImpact
impl PartialEq for AnomalyImpact
Source§impl Serialize for AnomalyImpact
impl Serialize for AnomalyImpact
impl StructuralPartialEq for AnomalyImpact
Auto Trait Implementations§
impl Freeze for AnomalyImpact
impl RefUnwindSafe for AnomalyImpact
impl Send for AnomalyImpact
impl Sync for AnomalyImpact
impl Unpin for AnomalyImpact
impl UnsafeUnpin for AnomalyImpact
impl UnwindSafe for AnomalyImpact
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