pub struct statfs {
pub f_type: i32,
pub f_bsize: i32,
pub f_blocks: u32,
pub f_bfree: u32,
pub f_bavail: u32,
pub f_files: u32,
pub f_ffree: u32,
pub f_fsid: fsid_t,
pub f_namelen: i32,
pub f_frsize: i32,
/* private fields */
}Fields
f_type: i32f_bsize: i32f_blocks: u32f_bfree: u32f_bavail: u32f_files: u32f_ffree: u32f_fsid: fsid_tf_namelen: i32f_frsize: i32Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for statfs
impl Send for statfs
impl Sync for statfs
impl Unpin for statfs
impl UnwindSafe for statfs
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