pub enum OperatorTrue {
Eq,
Neq,
Gt,
Gte,
Lt,
Lte,
}
Expand description
This is the operator you want to use to compare the parameter and value.
Variants§
Trait Implementations§
Source§impl Clone for OperatorTrue
impl Clone for OperatorTrue
Source§fn clone(&self) -> OperatorTrue
fn clone(&self) -> OperatorTrue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OperatorTrue
impl Debug for OperatorTrue
Source§impl Default for OperatorTrue
impl Default for OperatorTrue
Source§fn default() -> OperatorTrue
fn default() -> OperatorTrue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperatorTrue
impl<'de> Deserialize<'de> for OperatorTrue
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 OperatorTrue
impl Hash for OperatorTrue
Source§impl Ord for OperatorTrue
impl Ord for OperatorTrue
Source§fn cmp(&self, other: &OperatorTrue) -> Ordering
fn cmp(&self, other: &OperatorTrue) -> 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 OperatorTrue
impl PartialEq for OperatorTrue
Source§impl PartialOrd for OperatorTrue
impl PartialOrd for OperatorTrue
Source§impl Serialize for OperatorTrue
impl Serialize for OperatorTrue
impl Copy for OperatorTrue
impl Eq for OperatorTrue
impl StructuralPartialEq for OperatorTrue
Auto Trait Implementations§
impl Freeze for OperatorTrue
impl RefUnwindSafe for OperatorTrue
impl Send for OperatorTrue
impl Sync for OperatorTrue
impl Unpin for OperatorTrue
impl UnwindSafe for OperatorTrue
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