pub enum StoreRecoveryCapability {
StableCommitReplay,
None,
}Expand description
Store recovery capability.
Variants§
StableCommitReplay
Store contents can be recovered through stable commit replay.
None
Store contents are not recovered.
Trait Implementations§
Source§impl Clone for StoreRecoveryCapability
impl Clone for StoreRecoveryCapability
Source§fn clone(&self) -> StoreRecoveryCapability
fn clone(&self) -> StoreRecoveryCapability
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 StoreRecoveryCapability
impl Debug for StoreRecoveryCapability
Source§impl PartialEq for StoreRecoveryCapability
impl PartialEq for StoreRecoveryCapability
Source§fn eq(&self, other: &StoreRecoveryCapability) -> bool
fn eq(&self, other: &StoreRecoveryCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StoreRecoveryCapability
impl Serialize for StoreRecoveryCapability
impl Copy for StoreRecoveryCapability
impl Eq for StoreRecoveryCapability
impl StructuralPartialEq for StoreRecoveryCapability
Auto Trait Implementations§
impl Freeze for StoreRecoveryCapability
impl RefUnwindSafe for StoreRecoveryCapability
impl Send for StoreRecoveryCapability
impl Sync for StoreRecoveryCapability
impl Unpin for StoreRecoveryCapability
impl UnsafeUnpin for StoreRecoveryCapability
impl UnwindSafe for StoreRecoveryCapability
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