pub struct AnomalyzerConf {
pub sensitivity: f64,
pub upper_bound: f64,
pub lower_bound: f64,
pub active_size: usize,
pub n_seasons: usize,
pub perm_count: usize,
pub methods: Vec<String>,
}Fields§
§sensitivity: f64§upper_bound: f64§lower_bound: f64§active_size: usize§n_seasons: usize§perm_count: usize§methods: Vec<String>Trait Implementations§
Source§impl Clone for AnomalyzerConf
impl Clone for AnomalyzerConf
Source§fn clone(&self) -> AnomalyzerConf
fn clone(&self) -> AnomalyzerConf
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 AnomalyzerConf
impl Debug for AnomalyzerConf
Auto Trait Implementations§
impl Freeze for AnomalyzerConf
impl RefUnwindSafe for AnomalyzerConf
impl Send for AnomalyzerConf
impl Sync for AnomalyzerConf
impl Unpin for AnomalyzerConf
impl UnsafeUnpin for AnomalyzerConf
impl UnwindSafe for AnomalyzerConf
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