pub enum SnapshotConsistency {
CrashConsistent,
FilesystemConsistent,
ApplicationConsistent,
}Expand description
Consistency guarantee of a capture.
Variants§
CrashConsistent
Equivalent to storage observed after abrupt power loss.
FilesystemConsistent
Captured after filesystem quiescence.
ApplicationConsistent
Coherently resumable execution state.
Trait Implementations§
Source§impl Clone for SnapshotConsistency
impl Clone for SnapshotConsistency
Source§fn clone(&self) -> SnapshotConsistency
fn clone(&self) -> SnapshotConsistency
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 moreimpl Copy for SnapshotConsistency
Source§impl Debug for SnapshotConsistency
impl Debug for SnapshotConsistency
Source§impl<'de> Deserialize<'de> for SnapshotConsistency
impl<'de> Deserialize<'de> for SnapshotConsistency
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SnapshotConsistency, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SnapshotConsistency, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SnapshotConsistency
Source§impl PartialEq for SnapshotConsistency
impl PartialEq for SnapshotConsistency
Source§impl Serialize for SnapshotConsistency
impl Serialize for SnapshotConsistency
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SnapshotConsistency
Auto Trait Implementations§
impl Freeze for SnapshotConsistency
impl RefUnwindSafe for SnapshotConsistency
impl Send for SnapshotConsistency
impl Sync for SnapshotConsistency
impl Unpin for SnapshotConsistency
impl UnsafeUnpin for SnapshotConsistency
impl UnwindSafe for SnapshotConsistency
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