pub struct MissingCondition {
pub field: String,
pub condition_type: ConditionType,
pub multiplier: f64,
}Expand description
Condition for MAR missing values.
Fields§
§field: StringField to check.
condition_type: ConditionTypeCondition type.
multiplier: f64Probability multiplier when condition is met.
Trait Implementations§
Source§impl Clone for MissingCondition
impl Clone for MissingCondition
Source§fn clone(&self) -> MissingCondition
fn clone(&self) -> MissingCondition
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 MissingCondition
impl RefUnwindSafe for MissingCondition
impl Send for MissingCondition
impl Sync for MissingCondition
impl Unpin for MissingCondition
impl UnwindSafe for MissingCondition
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