pub enum LogicalOperator {
FirstCondition,
And,
Or,
}
Expand description
Provides the available logical operators for combining conditions between a previous condition.
The available logical operators are:
FirstCondition
: Represents the first condition, used to start the condition chain.And
: Represents the logical “AND” operator, which combines multiple conditions with a logical AND.Or
: Represents the logical “OR” operator, which combines multiple conditions with a logical OR.
Variants§
Trait Implementations§
Source§impl Clone for LogicalOperator
impl Clone for LogicalOperator
Source§fn clone(&self) -> LogicalOperator
fn clone(&self) -> LogicalOperator
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 LogicalOperator
impl Debug for LogicalOperator
Source§impl PartialEq for LogicalOperator
impl PartialEq 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