[][src]Struct uapi::c::statvfs

#[repr(C)]pub struct statvfs {
    pub f_bsize: u64,
    pub f_frsize: u64,
    pub f_blocks: u32,
    pub f_bfree: u32,
    pub f_bavail: u32,
    pub f_files: u32,
    pub f_ffree: u32,
    pub f_favail: u32,
    pub f_fsid: u64,
    pub f_flag: u64,
    pub f_namemax: u64,
}

Fields

f_bsize: u64f_frsize: u64f_blocks: u32f_bfree: u32f_bavail: u32f_files: u32f_ffree: u32f_favail: u32f_fsid: u64f_flag: u64f_namemax: u64

Trait Implementations

impl Clone for statvfs[src]

impl Copy for statvfs[src]

Auto Trait Implementations

impl RefUnwindSafe for statvfs

impl Send for statvfs

impl Sync for statvfs

impl Unpin for statvfs

impl UnwindSafe for statvfs

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.