Enum modql::filter::op_val_string::OpValString
source · pub enum OpValString {
Show 23 variants
Eq(String),
Not(String),
In(Vec<String>),
NotIn(Vec<String>),
Lt(String),
Lte(String),
Gt(String),
Gte(String),
Contains(String),
NotContains(String),
ContainsAny(Vec<String>),
NotContainsAny(Vec<String>),
ContainsAll(Vec<String>),
StartsWith(String),
NotStartsWith(String),
StartsWithAny(Vec<String>),
NotStartsWithAny(Vec<String>),
EndsWith(String),
NotEndsWith(String),
EndsWithAny(Vec<String>),
NotEndsWithAny(Vec<String>),
Empty(bool),
Null(bool),
}Variants§
Eq(String)
Not(String)
In(Vec<String>)
NotIn(Vec<String>)
Lt(String)
Lte(String)
Gt(String)
Gte(String)
Contains(String)
NotContains(String)
ContainsAny(Vec<String>)
NotContainsAny(Vec<String>)
ContainsAll(Vec<String>)
StartsWith(String)
NotStartsWith(String)
StartsWithAny(Vec<String>)
NotStartsWithAny(Vec<String>)
EndsWith(String)
NotEndsWith(String)
EndsWithAny(Vec<String>)
NotEndsWithAny(Vec<String>)
Empty(bool)
Null(bool)
Trait Implementations§
source§impl Clone for OpValString
impl Clone for OpValString
source§fn clone(&self) -> OpValString
fn clone(&self) -> OpValString
Returns a copy 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 OpValString
impl Debug for OpValString
source§impl From<&str> for OpValString
impl From<&str> for OpValString
source§impl From<OpValString> for OpVal
impl From<OpValString> for OpVal
source§fn from(val: OpValString) -> Self
fn from(val: OpValString) -> Self
Converts to this type from the input type.
source§impl From<OpValString> for OpValsString
impl From<OpValString> for OpValsString
source§fn from(val: OpValString) -> Self
fn from(val: OpValString) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for OpValString
impl Send for OpValString
impl Sync for OpValString
impl Unpin for OpValString
impl UnwindSafe for OpValString
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