pub struct MissingSummary {
pub total_features: usize,
pub features_with_invalidations: usize,
pub total_invalidation_events: usize,
pub total_missing_observations: usize,
pub max_consecutive_missing_threshold: usize,
}Expand description
Compact summary of missingness across all features — emitted in the run manifest JSON for audit.
Fields§
§total_features: usize§features_with_invalidations: usize§total_invalidation_events: usize§total_missing_observations: usize§max_consecutive_missing_threshold: usizeTrait Implementations§
Source§impl Clone for MissingSummary
impl Clone for MissingSummary
Source§fn clone(&self) -> MissingSummary
fn clone(&self) -> MissingSummary
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 MissingSummary
impl Debug for MissingSummary
Source§impl<'de> Deserialize<'de> for MissingSummary
impl<'de> Deserialize<'de> for MissingSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MissingSummary
impl RefUnwindSafe for MissingSummary
impl Send for MissingSummary
impl Sync for MissingSummary
impl Unpin for MissingSummary
impl UnsafeUnpin for MissingSummary
impl UnwindSafe for MissingSummary
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