pub enum OpValValue {
Eq(Value),
Not(Value),
In(Vec<Value>),
NotIn(Vec<Value>),
Lt(Value),
Lte(Value),
Gt(Value),
Gte(Value),
Null(bool),
}Variants§
Eq(Value)
Not(Value)
In(Vec<Value>)
NotIn(Vec<Value>)
Lt(Value)
Lte(Value)
Gt(Value)
Gte(Value)
Null(bool)
Trait Implementations§
Source§impl Clone for OpValValue
impl Clone for OpValValue
Source§fn clone(&self) -> OpValValue
fn clone(&self) -> OpValValue
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 OpValValue
impl Debug for OpValValue
Source§impl From<OpValValue> for OpVal
impl From<OpValValue> for OpVal
Source§fn from(val: OpValValue) -> Self
fn from(val: OpValValue) -> Self
Converts to this type from the input type.
Source§impl From<OpValValue> for OpValsValue
impl From<OpValValue> for OpValsValue
Source§fn from(val: OpValValue) -> Self
fn from(val: OpValValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OpValValue
impl RefUnwindSafe for OpValValue
impl Send for OpValValue
impl Sync for OpValValue
impl Unpin for OpValValue
impl UnwindSafe for OpValValue
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