[][src]Struct isilon::models::StoragepoolTierUsage

pub struct StoragepoolTierUsage {
    pub avail_bytes: String,
    pub avail_hdd_bytes: String,
    pub avail_ssd_bytes: String,
    pub balanced: bool,
    pub free_bytes: String,
    pub free_hdd_bytes: String,
    pub free_ssd_bytes: String,
    pub pct_used: String,
    pub pct_used_hdd: String,
    pub pct_used_ssd: String,
    pub total_bytes: String,
    pub total_hdd_bytes: String,
    pub total_ssd_bytes: String,
    pub usable_bytes: String,
    pub usable_hdd_bytes: String,
    pub usable_ssd_bytes: String,
    pub used_bytes: Option<String>,
    pub used_hdd_bytes: String,
    pub used_ssd_bytes: String,
    pub virtual_hot_spare_bytes: Option<String>,
}

Fields

avail_bytes: String

Available free bytes remaining in the pool when virtual hot spare is taken into account.

avail_hdd_bytes: String

Available free bytes remaining in the pool on HDD drives when virtual hot spare is taken into account.

avail_ssd_bytes: String

Available free bytes remaining in the pool on SSD drives when virtual hot spare is taken into account.

balanced: bool

Whether or not the pool usage is currently balanced.

free_bytes: String

Free bytes remaining in the pool.

free_hdd_bytes: String

Free bytes remaining in the pool on HDD drives.

free_ssd_bytes: String

Free bytes remaining in the pool on SSD drives.

pct_used: String

Percentage of usable space in the pool which is used.

pct_used_hdd: String

Percentage of usable space on HDD drives in the pool which is used.

pct_used_ssd: String

Percentage of usable space on SSD drives in the pool which is used.

total_bytes: String

Total bytes in the pool.

total_hdd_bytes: String

Total bytes in the pool on HDD drives.

total_ssd_bytes: String

Total bytes in the pool on SSD drives.

usable_bytes: String

Total bytes in the pool drives when virtual hot spare is taken into account.

usable_hdd_bytes: String

Total bytes in the pool on HDD drives when virtual hot spare is taken into account.

usable_ssd_bytes: String

Total bytes in the pool on SSD drives when virtual hot spare is taken into account.

used_bytes: Option<String>

Used bytes in the pool.

used_hdd_bytes: String

Used bytes in the pool on HDD drives.

used_ssd_bytes: String

Used bytes in the pool on SSD drives.

virtual_hot_spare_bytes: Option<String>

Trait Implementations

impl Debug for StoragepoolTierUsage[src]

impl Serialize for StoragepoolTierUsage[src]

impl<'de> Deserialize<'de> for StoragepoolTierUsage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T