pub enum StoreDurability {
Durable,
Volatile,
}Expand description
Store durability class.
Variants§
Durable
Store contents participate in durable storage semantics.
Volatile
Store contents are live-only and volatile.
Trait Implementations§
Source§impl Clone for StoreDurability
impl Clone for StoreDurability
Source§fn clone(&self) -> StoreDurability
fn clone(&self) -> StoreDurability
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 StoreDurability
impl Debug for StoreDurability
Source§impl PartialEq for StoreDurability
impl PartialEq for StoreDurability
Source§fn eq(&self, other: &StoreDurability) -> bool
fn eq(&self, other: &StoreDurability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StoreDurability
impl Serialize for StoreDurability
impl Copy for StoreDurability
impl Eq for StoreDurability
impl StructuralPartialEq for StoreDurability
Auto Trait Implementations§
impl Freeze for StoreDurability
impl RefUnwindSafe for StoreDurability
impl Send for StoreDurability
impl Sync for StoreDurability
impl Unpin for StoreDurability
impl UnsafeUnpin for StoreDurability
impl UnwindSafe for StoreDurability
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