pub enum BooleanConnective {
And,
Or,
}Expand description
Connectives for boolean expressions
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BooleanConnective
impl Clone for BooleanConnective
Source§fn clone(&self) -> BooleanConnective
fn clone(&self) -> BooleanConnective
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 BooleanConnective
impl Debug for BooleanConnective
Source§impl Display for BooleanConnective
impl Display for BooleanConnective
Source§impl Hash for BooleanConnective
impl Hash for BooleanConnective
Source§impl Ord for BooleanConnective
impl Ord for BooleanConnective
Source§fn cmp(&self, other: &BooleanConnective) -> Ordering
fn cmp(&self, other: &BooleanConnective) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BooleanConnective
impl PartialEq for BooleanConnective
Source§impl PartialOrd for BooleanConnective
impl PartialOrd for BooleanConnective
impl Copy for BooleanConnective
impl Eq for BooleanConnective
impl StructuralPartialEq for BooleanConnective
Auto Trait Implementations§
impl Freeze for BooleanConnective
impl RefUnwindSafe for BooleanConnective
impl Send for BooleanConnective
impl Sync for BooleanConnective
impl Unpin for BooleanConnective
impl UnwindSafe for BooleanConnective
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