pub enum AssignOp {
Assign,
Add,
Sub,
Extend,
Other(String),
}Expand description
The operator of a SET assignment.
Variants§
Assign
=
Add
+=
Sub
-=
Extend
+?= (add-if-missing)
Other(String)
Any other operator, kept as raw text rather than guessed.
Trait Implementations§
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