pub enum DeleteInstruction {
Delete,
DeleteUpTo(SequenceNumber),
}Variants§
Delete
Delete all values for the given subject.
DeleteUpTo(SequenceNumber)
Delete all values for the given subject up to the given sequence number.
Trait Implementations§
Source§impl Clone for DeleteInstruction
impl Clone for DeleteInstruction
Source§fn clone(&self) -> DeleteInstruction
fn clone(&self) -> DeleteInstruction
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 DeleteInstruction
impl Debug for DeleteInstruction
Source§impl PartialEq for DeleteInstruction
impl PartialEq for DeleteInstruction
impl Eq for DeleteInstruction
impl StructuralPartialEq for DeleteInstruction
Auto Trait Implementations§
impl Freeze for DeleteInstruction
impl RefUnwindSafe for DeleteInstruction
impl Send for DeleteInstruction
impl Sync for DeleteInstruction
impl Unpin for DeleteInstruction
impl UnwindSafe for DeleteInstruction
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