pub enum AssignOp {
Show 14 variants
Assign,
Plus,
Minus,
Mul,
Div,
Mod,
Pow,
Concat,
BitwiseAnd,
BitwiseOr,
BitwiseXor,
ShiftLeft,
ShiftRight,
Coalesce,
}Variants§
Assign
Plus
Minus
Mul
Div
Mod
Pow
Concat
BitwiseAnd
BitwiseOr
BitwiseXor
ShiftLeft
ShiftRight
Coalesce
Trait Implementations§
impl Copy for AssignOp
impl Eq for AssignOp
impl StructuralPartialEq for AssignOp
Auto Trait Implementations§
impl Freeze for AssignOp
impl RefUnwindSafe for AssignOp
impl Send for AssignOp
impl Sync for AssignOp
impl Unpin for AssignOp
impl UnsafeUnpin for AssignOp
impl UnwindSafe for AssignOp
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