pub enum AssignmentOp {
Set,
Insert,
Remove,
}Variants§
Set
Set a field, replacing the current value.
Insert
Insert one or more values into a set
Remove
Remove one or more values from a set.
Implementations§
Trait Implementations§
Source§impl Clone for AssignmentOp
impl Clone for AssignmentOp
Source§fn clone(&self) -> AssignmentOp
fn clone(&self) -> AssignmentOp
Returns a duplicate 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 AssignmentOp
impl Debug for AssignmentOp
Source§impl PartialEq for AssignmentOp
impl PartialEq for AssignmentOp
impl Copy for AssignmentOp
impl StructuralPartialEq for AssignmentOp
Auto Trait Implementations§
impl Freeze for AssignmentOp
impl RefUnwindSafe for AssignmentOp
impl Send for AssignmentOp
impl Sync for AssignmentOp
impl Unpin for AssignmentOp
impl UnwindSafe for AssignmentOp
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