pub struct Anomaly {
pub anomaly_type: AnomalyType,
pub z_score: f64,
pub value: f64,
pub expected: f64,
pub timestamp: Instant,
pub component: String,
}Fields§
§anomaly_type: AnomalyType§z_score: f64§value: f64§expected: f64§timestamp: Instant§component: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Anomaly
impl RefUnwindSafe for Anomaly
impl Send for Anomaly
impl Sync for Anomaly
impl Unpin for Anomaly
impl UnsafeUnpin for Anomaly
impl UnwindSafe for Anomaly
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