[][src]Struct isilon::models::NodePartitionsNodePartition

pub struct NodePartitionsNodePartition {
    pub block_size: Option<i32>,
    pub capacity: Option<i32>,
    pub component_devices: Option<String>,
    pub mount_point: Option<String>,
    pub percent_used: Option<String>,
    pub statfs: Option<NodePartitionsNodePartitionStatfs>,
    pub used: Option<i32>,
}

Fields

block_size: Option<i32>

The block size used for the reported partition information.

capacity: Option<i32>

Total blocks on this file system partition.

component_devices: Option<String>

Comma separated list of devices used for this file system partition.

mount_point: Option<String>

Directory on which this partition is mounted.

percent_used: Option<String>

Used blocks on this file system partition, expressed as a percentage.

statfs: Option<NodePartitionsNodePartitionStatfs>

System partition details as provided by statfs(2).

used: Option<i32>

Used blocks on this file system partition.

Trait Implementations

impl Debug for NodePartitionsNodePartition[src]

impl Serialize for NodePartitionsNodePartition[src]

impl<'de> Deserialize<'de> for NodePartitionsNodePartition[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