pub enum StorageStatus {
Online,
Degraded,
ReadOnly,
Offline,
}Expand description
Coarse storage availability status.
Variants§
Online
Provider is available for reads and writes.
Degraded
Provider remains available with reduced guarantees.
ReadOnly
Provider accepts reads only.
Offline
Provider is unavailable.
Trait Implementations§
Source§impl Clone for StorageStatus
impl Clone for StorageStatus
Source§fn clone(&self) -> StorageStatus
fn clone(&self) -> StorageStatus
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 StorageStatus
Source§impl Debug for StorageStatus
impl Debug for StorageStatus
impl Eq for StorageStatus
Source§impl PartialEq for StorageStatus
impl PartialEq for StorageStatus
impl StructuralPartialEq for StorageStatus
Auto Trait Implementations§
impl Freeze for StorageStatus
impl RefUnwindSafe for StorageStatus
impl Send for StorageStatus
impl Sync for StorageStatus
impl Unpin for StorageStatus
impl UnsafeUnpin for StorageStatus
impl UnwindSafe for StorageStatus
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