#[repr(C)]pub struct statfs64 {
pub f_type: __fsword_t,
pub f_bsize: __fsword_t,
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_namelen: __fsword_t,
pub f_frsize: __fsword_t,
pub f_flags: __fsword_t,
pub f_spare: [__fsword_t; 4],
}
Fields
f_type: __fsword_t
f_bsize: __fsword_t
f_blocks: u64
f_bfree: u64
f_bavail: u64
f_files: u64
f_ffree: u64
f_fsid: fsid_t
f_namelen: __fsword_t
f_frsize: __fsword_t
f_flags: __fsword_t
f_spare: [__fsword_t; 4]
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for statfs64
impl Send for statfs64
impl Sync for statfs64
impl Unpin for statfs64
impl UnwindSafe for statfs64
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more