pub struct WpredCell {
pub w_obs: u8,
pub w_pred: u8,
pub episode_count: u32,
pub precursor_count: u32,
pub precision: f32,
}Expand description
One cell of the W_pred × W_obs calibration grid.
Fields§
§w_obs: u8Observation window W (used for drift computation), samples.
w_pred: u8Prediction horizon W_pred (used for precursor matching), samples.
episode_count: u32Episode count at this W_obs (changes with W_obs, not W_pred).
precursor_count: u32TP count matching within W_pred observations of a labeled event.
precision: f32Precision = precursor_count / episode_count.
Trait Implementations§
impl Copy for WpredCell
impl StructuralPartialEq for WpredCell
Auto Trait Implementations§
impl Freeze for WpredCell
impl RefUnwindSafe for WpredCell
impl Send for WpredCell
impl Sync for WpredCell
impl Unpin for WpredCell
impl UnsafeUnpin for WpredCell
impl UnwindSafe for WpredCell
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