pub enum BinOp {
Show 13 variants
Equivalence,
ImportAlt,
BoolOr,
NaturalPlus,
TextAppend,
ListAppend,
BoolAnd,
RecursiveRecordMerge,
RightBiasedRecordMerge,
RecursiveRecordTypeMerge,
NaturalTimes,
BoolEQ,
BoolNE,
}Variants§
Equivalence
x === y
ImportAlt
x ? y
BoolOr
x || y
NaturalPlus
x + y
TextAppend
x ++ y
ListAppend
x # y
BoolAnd
x && y
RecursiveRecordMerge
x ∧ y
RightBiasedRecordMerge
x ⫽ y
RecursiveRecordTypeMerge
x ⩓ y
NaturalTimes
x * y
BoolEQ
x == y
BoolNE
x != y
Trait Implementations§
Source§impl Ord for BinOp
impl Ord for BinOp
Source§impl PartialOrd for BinOp
impl PartialOrd for BinOp
impl Copy for BinOp
impl Eq for BinOp
impl StructuralPartialEq for BinOp
Auto Trait Implementations§
impl Freeze for BinOp
impl RefUnwindSafe for BinOp
impl Send for BinOp
impl Sync for BinOp
impl Unpin for BinOp
impl UnwindSafe for BinOp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.