pub struct AnomalyDetectionResult {
pub anomalies: Vec<Anomaly>,
pub total_windows: usize,
pub anomaly_rate: f64,
pub is_valid: bool,
}Fields§
§anomalies: Vec<Anomaly>§total_windows: usize§anomaly_rate: f64§is_valid: boolTrait Implementations§
Source§impl Clone for AnomalyDetectionResult
impl Clone for AnomalyDetectionResult
Source§fn clone(&self) -> AnomalyDetectionResult
fn clone(&self) -> AnomalyDetectionResult
Returns a duplicate of the value. Read more
1.0.0 · 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 AnomalyDetectionResult
impl Debug for AnomalyDetectionResult
Auto Trait Implementations§
impl Freeze for AnomalyDetectionResult
impl RefUnwindSafe for AnomalyDetectionResult
impl Send for AnomalyDetectionResult
impl Sync for AnomalyDetectionResult
impl Unpin for AnomalyDetectionResult
impl UnsafeUnpin for AnomalyDetectionResult
impl UnwindSafe for AnomalyDetectionResult
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