pub enum AddUpdateTrackedAction {
Add(Vec<u8>),
Remove(Vec<u8>),
}Variants§
Trait Implementations§
Source§impl Clone for AddUpdateTrackedAction
impl Clone for AddUpdateTrackedAction
Source§fn clone(&self) -> AddUpdateTrackedAction
fn clone(&self) -> AddUpdateTrackedAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddUpdateTrackedAction
impl Debug for AddUpdateTrackedAction
impl Eq for AddUpdateTrackedAction
Source§impl PartialEq for AddUpdateTrackedAction
impl PartialEq for AddUpdateTrackedAction
Source§fn eq(&self, other: &AddUpdateTrackedAction) -> bool
fn eq(&self, other: &AddUpdateTrackedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddUpdateTrackedAction
Auto Trait Implementations§
impl Freeze for AddUpdateTrackedAction
impl RefUnwindSafe for AddUpdateTrackedAction
impl Send for AddUpdateTrackedAction
impl Sync for AddUpdateTrackedAction
impl Unpin for AddUpdateTrackedAction
impl UnsafeUnpin for AddUpdateTrackedAction
impl UnwindSafe for AddUpdateTrackedAction
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