pub enum Operation<O>where
O: Order,{
Insert(O),
Update(O),
Remove,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<O> Freeze for Operation<O>where
O: Freeze,
impl<O> RefUnwindSafe for Operation<O>where
O: RefUnwindSafe,
impl<O> Send for Operation<O>where
O: Send,
impl<O> Sync for Operation<O>where
O: Sync,
impl<O> Unpin for Operation<O>where
O: Unpin,
impl<O> UnwindSafe for Operation<O>where
O: UnwindSafe,
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