pub enum PoolState {
Active = 0,
Exported = 1,
Destroyed = 2,
Spare = 3,
L2Cache = 4,
Uninitialized = 5,
Unavailable = 6,
PotentiallyActive = 7,
}
Expand description
The following states are written to disk as part of the normal SPA lifecycle: Active, Exported, Destroyed, Spare, L2Cache. The remaining states are software abstractions used at various levels to communicate pool state.
Variants§
Active = 0
Exported = 1
Destroyed = 2
Spare = 3
L2Cache = 4
Uninitialized = 5
PotentiallyActive = 7
Trait Implementations§
impl Copy for PoolState
impl StructuralPartialEq for PoolState
Auto Trait Implementations§
impl Freeze for PoolState
impl RefUnwindSafe for PoolState
impl Send for PoolState
impl Sync for PoolState
impl Unpin for PoolState
impl UnwindSafe for PoolState
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