pub enum StorageMode {
Standalone,
ServerOwnedStandalone,
ClusterReplica {
cluster_id: ClusterId,
node_id: NodeId,
database_id: DatabaseId,
},
}Expand description
Which runtime owns a database directory (spec section 5.3).
Variants§
Standalone
Openable embedded and in single-node-server mode.
ServerOwnedStandalone
Functionally standalone, but the owning server holds the lock.
ClusterReplica
Owned by the cluster node runtime; rejected by every normal open.
Implementations§
Source§impl StorageMode
impl StorageMode
Sourcepub fn cluster_identity(&self) -> Option<(ClusterId, NodeId, DatabaseId)>
pub fn cluster_identity(&self) -> Option<(ClusterId, NodeId, DatabaseId)>
The cluster identity of a StorageMode::ClusterReplica, None for
standalone modes.
Trait Implementations§
Source§impl Clone for StorageMode
impl Clone for StorageMode
Source§fn clone(&self) -> StorageMode
fn clone(&self) -> StorageMode
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 StorageMode
Source§impl Debug for StorageMode
impl Debug for StorageMode
Source§impl<'de> Deserialize<'de> for StorageMode
impl<'de> Deserialize<'de> for StorageMode
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 StorageMode
Source§impl PartialEq for StorageMode
impl PartialEq for StorageMode
Source§impl Serialize for StorageMode
impl Serialize for StorageMode
impl StructuralPartialEq for StorageMode
Auto Trait Implementations§
impl Freeze for StorageMode
impl RefUnwindSafe for StorageMode
impl Send for StorageMode
impl Sync for StorageMode
impl Unpin for StorageMode
impl UnsafeUnpin for StorageMode
impl UnwindSafe for StorageMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more