pub enum Connective {
And,
Or,
Iff,
Xor,
}Expand description
Logical connective: AND(∧), OR(∨), IFF(↔), XOR(⊕).
Variants§
Trait Implementations§
Source§impl Clone for Connective
impl Clone for Connective
Source§fn clone(&self) -> Connective
fn clone(&self) -> Connective
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Connective
Source§impl Debug for Connective
impl Debug for Connective
impl Eq for Connective
Source§impl Ord for Connective
impl Ord for Connective
Source§fn cmp(&self, other: &Connective) -> Ordering
fn cmp(&self, other: &Connective) -> Ordering
1.21.0 (const: unstable) · 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 Connective
impl PartialEq for Connective
Source§impl PartialOrd for Connective
impl PartialOrd for Connective
impl StructuralPartialEq for Connective
Auto Trait Implementations§
impl Freeze for Connective
impl RefUnwindSafe for Connective
impl Send for Connective
impl Sync for Connective
impl Unpin for Connective
impl UnsafeUnpin for Connective
impl UnwindSafe for Connective
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