pub enum LogicalOperator {
Equal,
Diferent,
Higher,
Lower,
HigherEquality,
LowerEquality,
StringContains,
StringContainsInsensitive,
StringRegex,
}
Variants§
Equal
Diferent
Higher
Lower
HigherEquality
LowerEquality
StringContains
StringContainsInsensitive
StringRegex
Implementations§
Trait Implementations§
Source§impl Clone for LogicalOperator
impl Clone for LogicalOperator
Source§fn clone(&self) -> LogicalOperator
fn clone(&self) -> LogicalOperator
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 LogicalOperator
impl Debug for LogicalOperator
Source§impl PartialEq for LogicalOperator
impl PartialEq for LogicalOperator
impl Copy for LogicalOperator
impl Eq for LogicalOperator
impl StructuralPartialEq for LogicalOperator
Auto Trait Implementations§
impl Freeze for LogicalOperator
impl RefUnwindSafe for LogicalOperator
impl Send for LogicalOperator
impl Sync for LogicalOperator
impl Unpin for LogicalOperator
impl UnwindSafe for LogicalOperator
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