Enum zfs::PoolState [] [src]

pub enum PoolState {
    Active,
    Exported,
    Destroyed,
    Spare,
    L2Cache,
    Uninitialized,
    Unavailable,
    PotentiallyActive,
}

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

Trait Implementations

impl Copy for PoolState
[src]

impl Clone for PoolState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PoolState
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.