pub struct statfs64 {
pub f_type: i32,
pub f_bsize: 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_namelen: i32,
pub f_frsize: i32,
pub f_flags: i32,
pub f_spare: [i32; 4],
}Fields
f_type: i32f_bsize: i32f_blocks: u64f_bfree: u64f_bavail: u64f_files: u64f_ffree: u64f_fsid: fsid_tf_namelen: i32f_frsize: i32f_flags: i32f_spare: [i32; 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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