pub struct MissingPattern {
pub description: String,
pub field: String,
pub pattern_type: PatternType,
pub probability: f64,
}Expand description
Pattern for MNAR missing values.
Fields§
§description: StringDescription of the pattern.
field: StringField to check.
pattern_type: PatternTypePattern type.
probability: f64Probability when pattern matches.
Trait Implementations§
Source§impl Clone for MissingPattern
impl Clone for MissingPattern
Source§fn clone(&self) -> MissingPattern
fn clone(&self) -> MissingPattern
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 moreAuto Trait Implementations§
impl Freeze for MissingPattern
impl RefUnwindSafe for MissingPattern
impl Send for MissingPattern
impl Sync for MissingPattern
impl Unpin for MissingPattern
impl UnwindSafe for MissingPattern
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