[][src]Struct isilon::models::ClusterStatfs

pub struct ClusterStatfs {
    pub f_bavail: u64,
    pub f_bfree: u64,
    pub f_blocks: u64,
    pub f_bsize: u64,
    pub f_ffree: u64,
    pub f_files: u64,
    pub f_flags: u64,
    pub f_fstypename: String,
    pub f_iosize: u64,
    pub f_mntfromname: String,
    pub f_mntonname: String,
    pub f_namemax: u64,
    pub f_owner: u64,
    pub f_type: u64,
    pub f_version: u64,
}

Fields

f_bavail: u64

The number of free blocks available to non-superuser.

f_bfree: u64

The number of free blocks in the filesystem.

f_blocks: u64

The total number of data blocks in the filesystem.

f_bsize: u64

The filesystem fragment size.

f_ffree: u64

The number of free nodes available to non-superuser.

f_files: u64

The total number of file nodes in the filesystem.

f_flags: u64

A copy of the mount exported flags.

f_fstypename: String

The filesystem type name.

f_iosize: u64

The optimal transfer block size.

f_mntfromname: String

The name of the mounted filesystem.

f_mntonname: String

The directory that the filesystem is mounted on.

f_namemax: u64

The maximum length of a file name.

f_owner: u64

The ID of the user that mounted the filesystem.

f_type: u64

The type of the filesystem.

f_version: u64

The structure version number.

Trait Implementations

impl Debug for ClusterStatfs[src]

impl Serialize for ClusterStatfs[src]

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