pub enum AssignmentOperator {
Equals = 0,
PlusEquals = 1,
MinusEquals = 2,
TimesEquals = 3,
DivideEquals = 4,
RemainderEquals = 5,
LowerBound = 6,
UpperBound = 7,
Unknown = 8,
}Variants§
Equals = 0
PlusEquals = 1
MinusEquals = 2
TimesEquals = 3
DivideEquals = 4
RemainderEquals = 5
LowerBound = 6
UpperBound = 7
Unknown = 8
Implementations§
Trait Implementations§
Source§impl PartialEq for AssignmentOperator
impl PartialEq for AssignmentOperator
impl StructuralPartialEq for AssignmentOperator
Auto Trait Implementations§
impl Freeze for AssignmentOperator
impl RefUnwindSafe for AssignmentOperator
impl Send for AssignmentOperator
impl Sync for AssignmentOperator
impl Unpin for AssignmentOperator
impl UnwindSafe for AssignmentOperator
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