pub struct Anomaly {
pub execution_id: String,
pub metric: String,
pub actual: f64,
pub expected: f64,
pub deviation_factor: f64,
}Expand description
An execution anomaly.
Fields§
§execution_id: String§metric: String§actual: f64§expected: f64§deviation_factor: f64Trait 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