pub enum OperatorClass {
ComparisonOp,
LogicalOp,
ArithmeticOp,
}
Variants§
Trait Implementations§
source§impl Clone for OperatorClass
impl Clone for OperatorClass
source§fn clone(&self) -> OperatorClass
fn clone(&self) -> OperatorClass
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 OperatorClass
impl Debug for OperatorClass
source§impl PartialEq<OperatorClass> for OperatorClass
impl PartialEq<OperatorClass> for OperatorClass
source§fn eq(&self, other: &OperatorClass) -> bool
fn eq(&self, other: &OperatorClass) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for OperatorClass
impl StructuralEq for OperatorClass
impl StructuralPartialEq for OperatorClass
Auto Trait Implementations§
impl RefUnwindSafe for OperatorClass
impl Send for OperatorClass
impl Sync for OperatorClass
impl Unpin for OperatorClass
impl UnwindSafe for OperatorClass
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