#[repr(C)]pub struct statvfs {
pub f_bsize: c_ulong,
pub f_frsize: c_ulong,
pub f_blocks: fsblkcnt_t,
pub f_bfree: fsblkcnt_t,
pub f_bavail: fsblkcnt_t,
pub f_files: fsfilcnt_t,
pub f_ffree: fsfilcnt_t,
pub f_favail: fsfilcnt_t,
pub f_fsid: c_ulong,
pub f_flag: c_ulong,
pub f_namemax: c_ulong,
/* private fields */
}
Fields
f_bsize: c_ulong
f_frsize: c_ulong
f_blocks: fsblkcnt_t
f_bfree: fsblkcnt_t
f_bavail: fsblkcnt_t
f_files: fsfilcnt_t
f_ffree: fsfilcnt_t
f_favail: fsfilcnt_t
f_fsid: c_ulong
f_flag: c_ulong
f_namemax: c_ulong
Trait Implementations
sourceimpl Hash for statvfs
impl Hash for statvfs
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [
Hasher
]. Read more1.3.0fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Feeds a slice of this type into the given [
Hasher
]. Read moreimpl Copy for statvfs
impl Eq for statvfs
impl StructuralEq for statvfs
impl StructuralPartialEq for statvfs
Auto Trait Implementations
impl RefUnwindSafe for statvfs
impl Send for statvfs
impl Sync for statvfs
impl Unpin for statvfs
impl UnwindSafe for statvfs
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more