pub struct WindowAnomaly {
pub offset: usize,
pub mean: f64,
pub z_score: f64,
}Expand description
A single anomalous window detected during temporal analysis.
Fields§
§offset: usize§mean: f64§z_score: f64Z-score vs theoretical Uniform(0,255) parameters, not empirical.
Trait Implementations§
Source§impl Clone for WindowAnomaly
impl Clone for WindowAnomaly
Source§fn clone(&self) -> WindowAnomaly
fn clone(&self) -> WindowAnomaly
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 WindowAnomaly
impl Debug for WindowAnomaly
Auto Trait Implementations§
impl Freeze for WindowAnomaly
impl RefUnwindSafe for WindowAnomaly
impl Send for WindowAnomaly
impl Sync for WindowAnomaly
impl Unpin for WindowAnomaly
impl UnsafeUnpin for WindowAnomaly
impl UnwindSafe for WindowAnomaly
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