pub enum Operation {
Get,
Modify,
Remove,
}Expand description
Describes the operation that is being performed.
Variants§
Get
Set to this value when a call to get is invoked.
Modify
Set to this value when a call to modify is invoked.
Remove
Set to this value when a call to remove is invoked.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnwindSafe for Operation
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