pub enum SaveInstruction {
WriteHeader,
Update(usize, SaveValue),
Insert(usize, SaveValue),
Append(SaveValue),
Remove(usize),
Patch,
}Variants§
WriteHeader
Update(usize, SaveValue)
Insert(usize, SaveValue)
Append(SaveValue)
Remove(usize)
Patch
Implementations§
Trait Implementations§
Source§impl Clone for SaveInstruction
impl Clone for SaveInstruction
Source§fn clone(&self) -> SaveInstruction
fn clone(&self) -> SaveInstruction
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 SaveInstruction
impl Debug for SaveInstruction
Source§impl PartialEq for SaveInstruction
impl PartialEq for SaveInstruction
impl StructuralPartialEq for SaveInstruction
Auto Trait Implementations§
impl Freeze for SaveInstruction
impl RefUnwindSafe for SaveInstruction
impl Send for SaveInstruction
impl Sync for SaveInstruction
impl Unpin for SaveInstruction
impl UnwindSafe for SaveInstruction
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