pub struct NullableDurationComparator {
pub eq: Option<Value>,
pub neq: Option<Value>,
pub in: Option<Vec<Value>>,
pub nin: Option<Vec<Value>>,
pub null: Option<bool>,
pub lt: Option<Value>,
pub lte: Option<Value>,
pub gt: Option<Value>,
pub gte: Option<Value>,
}Fields§
§eq: Option<Value>§neq: Option<Value>§in: Option<Vec<Value>>§nin: Option<Vec<Value>>§null: Option<bool>§lt: Option<Value>§lte: Option<Value>§gt: Option<Value>§gte: Option<Value>Trait Implementations§
Source§impl Clone for NullableDurationComparator
impl Clone for NullableDurationComparator
Source§fn clone(&self) -> NullableDurationComparator
fn clone(&self) -> NullableDurationComparator
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 NullableDurationComparator
impl Debug for NullableDurationComparator
Source§impl Default for NullableDurationComparator
impl Default for NullableDurationComparator
Source§fn default() -> NullableDurationComparator
fn default() -> NullableDurationComparator
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NullableDurationComparator
impl<'de> Deserialize<'de> for NullableDurationComparator
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 NullableDurationComparator
impl RefUnwindSafe for NullableDurationComparator
impl Send for NullableDurationComparator
impl Sync for NullableDurationComparator
impl Unpin for NullableDurationComparator
impl UnwindSafe for NullableDurationComparator
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