pub struct Condition<'a, T: Clone + 'a> {
pub column: usize,
pub cmp: Comparison<'a, T>,
}
Expand description
A single condition to evaluate for a row in the dataset.
Fields§
§column: usize
The column of the row to use as the comparison value.
cmp: Comparison<'a, T>
The comparison to perform on the selected value.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for Condition<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for Condition<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for Condition<'a, T>
impl<'a, T> Sync for Condition<'a, T>where
T: Sync,
impl<'a, T> Unpin for Condition<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for Condition<'a, T>where
T: UnwindSafe + RefUnwindSafe,
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