#[repr(C)]pub struct statfs {
pub f_type: i64,
pub f_bsize: i64,
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: i64,
pub f_frsize: i64,
/* private fields */
}
Fields§
§f_type: i64
§f_bsize: i64
§f_blocks: u64
§f_bfree: u64
§f_bavail: u64
§f_files: u64
§f_ffree: u64
§f_fsid: fsid_t
§f_namelen: i64
§f_frsize: i64
Trait Implementations§
source§impl PartialEq<statfs> for statfs
impl PartialEq<statfs> for statfs
impl Copy for statfs
impl Eq for statfs
impl StructuralEq for statfs
impl StructuralPartialEq for statfs
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.