pub struct LeakAlert {
pub triggered: bool,
pub cusum_triggered: bool,
pub eprocess_triggered: bool,
pub e_value: f64,
pub cusum_upper: f64,
pub cusum_lower: f64,
pub frame: usize,
}Expand description
Result of a single observation.
Fields§
§triggered: boolWhether the detector triggered an alert.
cusum_triggered: boolWhich detector(s) triggered.
eprocess_triggered: boolWhether the e-process crossed the threshold.
e_value: f64Current e-process value.
cusum_upper: f64Current CUSUM upper statistic.
cusum_lower: f64Current CUSUM lower statistic.
frame: usizeFrame index.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LeakAlert
impl RefUnwindSafe for LeakAlert
impl Send for LeakAlert
impl Sync for LeakAlert
impl Unpin for LeakAlert
impl UnwindSafe for LeakAlert
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