[][src]Struct libc_interface::statvfs64

#[repr(C)]pub struct statvfs64 {
    pub f_bsize: c_ulong,
    pub f_frsize: c_ulong,
    pub f_blocks: u64,
    pub f_bfree: u64,
    pub f_bavail: u64,
    pub f_files: u64,
    pub f_ffree: u64,
    pub f_favail: u64,
    pub f_fsid: c_ulong,
    pub f_flag: c_ulong,
    pub f_namemax: c_ulong,
    // some fields omitted
}

Fields

f_bsize: c_ulongf_frsize: c_ulongf_blocks: u64f_bfree: u64f_bavail: u64f_files: u64f_ffree: u64f_favail: u64f_fsid: c_ulongf_flag: c_ulongf_namemax: c_ulong

Trait Implementations

impl Clone for statvfs64[src]

impl Copy for statvfs64[src]

impl Debug for statvfs64[src]

impl Eq for statvfs64[src]

impl Hash for statvfs64[src]

impl PartialEq<statvfs64> for statvfs64[src]

impl StructuralEq for statvfs64[src]

impl StructuralPartialEq for statvfs64[src]

Auto Trait Implementations

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.