pub enum StoreSnapshotStorageMode {
Stable,
Heap,
Journaled,
}Expand description
Diagnostic storage mode reported for one store-role snapshot.
This is observability metadata only. It does not participate in allocation identity, stable-key generation, or durable row/index/schema storage ABI.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StoreSnapshotStorageMode
impl Clone for StoreSnapshotStorageMode
Source§fn clone(&self) -> StoreSnapshotStorageMode
fn clone(&self) -> StoreSnapshotStorageMode
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 StoreSnapshotStorageMode
Source§impl Debug for StoreSnapshotStorageMode
impl Debug for StoreSnapshotStorageMode
Source§impl Default for StoreSnapshotStorageMode
impl Default for StoreSnapshotStorageMode
Source§fn default() -> StoreSnapshotStorageMode
fn default() -> StoreSnapshotStorageMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreSnapshotStorageMode
impl<'de> Deserialize<'de> for StoreSnapshotStorageMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for StoreSnapshotStorageMode
Source§impl PartialEq for StoreSnapshotStorageMode
impl PartialEq for StoreSnapshotStorageMode
Source§fn eq(&self, other: &StoreSnapshotStorageMode) -> bool
fn eq(&self, other: &StoreSnapshotStorageMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StoreSnapshotStorageMode
Auto Trait Implementations§
impl Freeze for StoreSnapshotStorageMode
impl RefUnwindSafe for StoreSnapshotStorageMode
impl Send for StoreSnapshotStorageMode
impl Sync for StoreSnapshotStorageMode
impl Unpin for StoreSnapshotStorageMode
impl UnsafeUnpin for StoreSnapshotStorageMode
impl UnwindSafe for StoreSnapshotStorageMode
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