pub enum LeftRightOp {
Logic(LogicOp),
Relation(RelationOp),
Arithmetic(ArithmeticOp),
}
Variants§
Trait Implementations§
Source§impl Clone for LeftRightOp
impl Clone for LeftRightOp
Source§fn clone(&self) -> LeftRightOp
fn clone(&self) -> LeftRightOp
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 LeftRightOp
impl Debug for LeftRightOp
Source§impl PartialEq for LeftRightOp
impl PartialEq for LeftRightOp
impl Eq for LeftRightOp
impl StructuralPartialEq for LeftRightOp
Auto Trait Implementations§
impl Freeze for LeftRightOp
impl RefUnwindSafe for LeftRightOp
impl Send for LeftRightOp
impl Sync for LeftRightOp
impl Unpin for LeftRightOp
impl UnwindSafe for LeftRightOp
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