pub struct AnomalyRow {
pub row: usize,
pub baseline: Precision,
pub current: Precision,
pub anomaly: Precision,
}Expand description
One row’s anomaly report.
Fields§
§row: usizeRow index in the solution vector.
baseline: PrecisionThe baseline value at this row.
current: PrecisionThe current value at this row.
anomaly: Precision|current - baseline|. The score used for ranking. Higher = more
anomalous.
Trait Implementations§
Source§impl Clone for AnomalyRow
impl Clone for AnomalyRow
Source§fn clone(&self) -> AnomalyRow
fn clone(&self) -> AnomalyRow
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 AnomalyRow
impl Debug for AnomalyRow
Source§impl<'de> Deserialize<'de> for AnomalyRow
impl<'de> Deserialize<'de> for AnomalyRow
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 AnomalyRow
impl PartialEq for AnomalyRow
Source§fn eq(&self, other: &AnomalyRow) -> bool
fn eq(&self, other: &AnomalyRow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnomalyRow
impl Serialize for AnomalyRow
impl StructuralPartialEq for AnomalyRow
Auto Trait Implementations§
impl Freeze for AnomalyRow
impl RefUnwindSafe for AnomalyRow
impl Send for AnomalyRow
impl Sync for AnomalyRow
impl Unpin for AnomalyRow
impl UnsafeUnpin for AnomalyRow
impl UnwindSafe for AnomalyRow
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