pub struct BaselineStats {
pub mean_event_rate: f64,
pub std_event_rate: f64,
pub mean_failed_ratio: f64,
pub typical_hours: Vec<u32>,
pub sample_count: usize,
}Expand description
Baseline statistics for anomaly detection
Fields§
§mean_event_rate: f64§std_event_rate: f64§mean_failed_ratio: f64§typical_hours: Vec<u32>§sample_count: usizeImplementations§
Trait Implementations§
Source§impl Clone for BaselineStats
impl Clone for BaselineStats
Source§fn clone(&self) -> BaselineStats
fn clone(&self) -> BaselineStats
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 BaselineStats
impl Debug for BaselineStats
Auto Trait Implementations§
impl Freeze for BaselineStats
impl RefUnwindSafe for BaselineStats
impl Send for BaselineStats
impl Sync for BaselineStats
impl Unpin for BaselineStats
impl UnwindSafe for BaselineStats
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