pub enum CompiledBatchKind {
RowCount {
min: Option<usize>,
max: Option<usize>,
},
NullRate {
path: CompiledPath,
max: f64,
},
Unique {
paths: Vec<CompiledPath>,
},
DistinctCount {
path: CompiledPath,
min: Option<usize>,
max: Option<usize>,
},
}Available on crate feature
quality only.Expand description
Compiled form of a per-batch check, keyed by check kind.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompiledBatchKind
impl RefUnwindSafe for CompiledBatchKind
impl Send for CompiledBatchKind
impl Sync for CompiledBatchKind
impl Unpin for CompiledBatchKind
impl UnsafeUnpin for CompiledBatchKind
impl UnwindSafe for CompiledBatchKind
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