[][src]Struct isilon::models::NodePartitionsNodePartitionStatfs

pub struct NodePartitionsNodePartitionStatfs {
    pub f_bavail: Option<i32>,
    pub f_bfree: Option<i32>,
    pub f_blocks: Option<i32>,
    pub f_bsize: Option<i32>,
    pub f_ffree: Option<i32>,
    pub f_files: Option<i32>,
    pub f_flags: Option<i32>,
    pub f_fstypename: Option<String>,
    pub f_iosize: Option<i32>,
    pub f_mntfromname: Option<String>,
    pub f_mntonname: Option<String>,
    pub f_namemax: Option<i32>,
    pub f_owner: Option<i32>,
    pub f_type: Option<i32>,
    pub f_version: Option<i32>,
}

Fields

f_bavail: Option<i32>

Free blocks available to non-superuser on this partition.

f_bfree: Option<i32>

Free blocks on this partition.

f_blocks: Option<i32>

Total data blocks on this partition.

f_bsize: Option<i32>

Filesystem fragment size; block size in OneFS.

f_ffree: Option<i32>

Free file nodes avail to non-superuser.

f_files: Option<i32>

Total file nodes in filesystem.

f_flags: Option<i32>

Mount exported flags.

f_fstypename: Option<String>

File system type name.

f_iosize: Option<i32>

Optimal transfer block size.

f_mntfromname: Option<String>

Names of devices this partition is mounted from.

f_mntonname: Option<String>

Directory this partition is mounted to.

f_namemax: Option<i32>

Maximum filename length.

f_owner: Option<i32>

UID of user that mounted the filesystem.

f_type: Option<i32>

Type of filesystem.

f_version: Option<i32>

statfs() structure version number.

Trait Implementations

impl Debug for NodePartitionsNodePartitionStatfs[src]

impl Serialize for NodePartitionsNodePartitionStatfs[src]

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