Enum polyvalue::operations::BooleanOperation
source · pub enum BooleanOperation {
And,
Or,
LT,
GT,
LTE,
GTE,
EQ,
NEQ,
Not,
}Expand description
Available boolean operations
Variants§
And
Perform a boolean and
Or
Perform a boolean or
LT
Perform a less than comparison
GT
Perform a greater than comparison
LTE
Perform a less than or equal to comparison
GTE
Perform a greater than or equal to comparison
EQ
Perform an equal to comparison
NEQ
Perform a not equal to comparison
Not
Perform a boolean not
Trait Implementations§
source§impl Clone for BooleanOperation
impl Clone for BooleanOperation
source§fn clone(&self) -> BooleanOperation
fn clone(&self) -> BooleanOperation
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 BooleanOperation
impl Debug for BooleanOperation
source§impl Display for BooleanOperation
impl Display for BooleanOperation
source§impl PartialEq for BooleanOperation
impl PartialEq for BooleanOperation
source§fn eq(&self, other: &BooleanOperation) -> bool
fn eq(&self, other: &BooleanOperation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for BooleanOperation
impl StructuralPartialEq for BooleanOperation
Auto Trait Implementations§
impl RefUnwindSafe for BooleanOperation
impl Send for BooleanOperation
impl Sync for BooleanOperation
impl Unpin for BooleanOperation
impl UnwindSafe for BooleanOperation
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