Struct libc::statfs[][src]

#[repr(C)]
pub struct statfs {
Show fields pub f_bsize: u32, pub f_iosize: i32, pub f_blocks: u64, pub f_bfree: u64, pub f_bavail: u64, pub f_files: u64, pub f_ffree: u64, pub f_fsid: fsid_t, pub f_owner: uid_t, pub f_type: u32, pub f_flags: u32, pub f_fssubtype: u32, pub f_fstypename: [c_char; 16], pub f_mntonname: [c_char; 1024], pub f_mntfromname: [c_char; 1024], pub f_reserved: [u32; 8],
}

Fields

f_bsize: u32f_iosize: i32f_blocks: u64f_bfree: u64f_bavail: u64f_files: u64f_ffree: u64f_fsid: fsid_tf_owner: uid_tf_type: u32f_flags: u32f_fssubtype: u32f_fstypename: [c_char; 16]f_mntonname: [c_char; 1024]f_mntfromname: [c_char; 1024]f_reserved: [u32; 8]

Trait Implementations

impl Clone for statfs[src]

impl Copy for statfs[src]

Auto Trait Implementations

impl Send for statfs

impl Sync for statfs

impl Unpin for statfs

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, 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.