pub enum Operation<'a> {
Put(PutData<'a>),
Delete(DeleteData<'a>),
Get(GetData<'a>),
}Expand description
A transactional operation.
Variants§
Put(PutData<'a>)
A put operation.
Delete(DeleteData<'a>)
A delete operation.
Get(GetData<'a>)
A get operation.
Trait Implementations§
impl<'a> StructuralPartialEq for Operation<'a>
Auto Trait Implementations§
impl<'a> Freeze for Operation<'a>
impl<'a> RefUnwindSafe for Operation<'a>
impl<'a> Send for Operation<'a>
impl<'a> Sync for Operation<'a>
impl<'a> Unpin for Operation<'a>
impl<'a> UnwindSafe for Operation<'a>
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