pub enum AssignOperator {
Equals,
Plus,
Minus,
Multiply,
Divide,
ShiftLeft,
ShiftRight,
And,
Or,
}Variants§
Trait Implementations§
Source§impl Debug for AssignOperator
impl Debug for AssignOperator
Source§impl PartialEq for AssignOperator
impl PartialEq for AssignOperator
Source§fn eq(&self, other: &AssignOperator) -> bool
fn eq(&self, other: &AssignOperator) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AssignOperator
Auto Trait Implementations§
impl Freeze for AssignOperator
impl RefUnwindSafe for AssignOperator
impl Send for AssignOperator
impl Sync for AssignOperator
impl Unpin for AssignOperator
impl UnsafeUnpin for AssignOperator
impl UnwindSafe for AssignOperator
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