pub enum StoreOperation {
Load,
Save,
Delete,
}Variants§
Trait Implementations§
Source§impl Clone for StoreOperation
impl Clone for StoreOperation
Source§fn clone(&self) -> StoreOperation
fn clone(&self) -> StoreOperation
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 StoreOperation
impl Debug for StoreOperation
Source§impl PartialEq for StoreOperation
impl PartialEq for StoreOperation
Source§fn eq(&self, other: &StoreOperation) -> bool
fn eq(&self, other: &StoreOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StoreOperation
impl Eq for StoreOperation
impl StructuralPartialEq for StoreOperation
Auto Trait Implementations§
impl Freeze for StoreOperation
impl RefUnwindSafe for StoreOperation
impl Send for StoreOperation
impl Sync for StoreOperation
impl Unpin for StoreOperation
impl UnsafeUnpin for StoreOperation
impl UnwindSafe for StoreOperation
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