pub struct DsfbVsEwmaCase {
pub failure_id: usize,
pub failure_timestamp: String,
pub recovered: bool,
pub recovered_feature_name: String,
pub baseline_miss_rule: String,
pub ewma_detected: bool,
pub ewma_lead_runs: Option<usize>,
pub optimized_dsa_lead_runs: Option<usize>,
pub explanation: String,
pub window: Vec<DsfbVsEwmaWindowPoint>,
}Fields§
§failure_id: usize§failure_timestamp: String§recovered: bool§recovered_feature_name: String§baseline_miss_rule: String§ewma_detected: bool§ewma_lead_runs: Option<usize>§optimized_dsa_lead_runs: Option<usize>§explanation: String§window: Vec<DsfbVsEwmaWindowPoint>Trait Implementations§
Source§impl Clone for DsfbVsEwmaCase
impl Clone for DsfbVsEwmaCase
Source§fn clone(&self) -> DsfbVsEwmaCase
fn clone(&self) -> DsfbVsEwmaCase
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 DsfbVsEwmaCase
impl Debug for DsfbVsEwmaCase
Auto Trait Implementations§
impl Freeze for DsfbVsEwmaCase
impl RefUnwindSafe for DsfbVsEwmaCase
impl Send for DsfbVsEwmaCase
impl Sync for DsfbVsEwmaCase
impl Unpin for DsfbVsEwmaCase
impl UnsafeUnpin for DsfbVsEwmaCase
impl UnwindSafe for DsfbVsEwmaCase
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