pub enum SupportedOperators {
Show 19 variants
Lt,
Lte,
Gt,
Gte,
Startswith,
Istartswith,
Endswith,
Iendswith,
Contains,
Icontains,
Matches,
Notcontains,
Inotcontains,
Eq,
Neq,
Isnull,
Includes,
Excludes,
LenEq,
}Expand description
Variants§
Lt
Lte
Gt
Gte
Startswith
Istartswith
Endswith
Iendswith
Contains
Icontains
Matches
Notcontains
Inotcontains
Eq
Neq
Isnull
Includes
Excludes
LenEq
Trait Implementations§
Source§impl Clone for SupportedOperators
impl Clone for SupportedOperators
Source§fn clone(&self) -> SupportedOperators
fn clone(&self) -> SupportedOperators
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 SupportedOperators
impl Debug for SupportedOperators
Source§impl Default for SupportedOperators
impl Default for SupportedOperators
Source§fn default() -> SupportedOperators
fn default() -> SupportedOperators
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SupportedOperators
impl<'de> Deserialize<'de> for SupportedOperators
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
Source§impl Hash for SupportedOperators
impl Hash for SupportedOperators
Source§impl Ord for SupportedOperators
impl Ord for SupportedOperators
Source§fn cmp(&self, other: &SupportedOperators) -> Ordering
fn cmp(&self, other: &SupportedOperators) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SupportedOperators
impl PartialEq for SupportedOperators
Source§impl PartialOrd for SupportedOperators
impl PartialOrd for SupportedOperators
Source§impl Serialize for SupportedOperators
impl Serialize for SupportedOperators
impl Copy for SupportedOperators
impl Eq for SupportedOperators
impl StructuralPartialEq for SupportedOperators
Auto Trait Implementations§
impl Freeze for SupportedOperators
impl RefUnwindSafe for SupportedOperators
impl Send for SupportedOperators
impl Sync for SupportedOperators
impl Unpin for SupportedOperators
impl UnsafeUnpin for SupportedOperators
impl UnwindSafe for SupportedOperators
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