pub enum RangeOrIsNull {
Range(Range<i64>),
IsNull {
is_null: bool,
},
}Expand description
Filter with a range, or by whether the value is null.
Variants§
Trait Implementations§
Source§impl Clone for RangeOrIsNull
impl Clone for RangeOrIsNull
Source§fn clone(&self) -> RangeOrIsNull
fn clone(&self) -> RangeOrIsNull
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 RangeOrIsNull
impl Debug for RangeOrIsNull
Source§impl<'de> Deserialize<'de> for RangeOrIsNull
impl<'de> Deserialize<'de> for RangeOrIsNull
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 RangeOrIsNull
impl RefUnwindSafe for RangeOrIsNull
impl Send for RangeOrIsNull
impl Sync for RangeOrIsNull
impl Unpin for RangeOrIsNull
impl UnwindSafe for RangeOrIsNull
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