#[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
sourceimpl Hash for statfs64
impl Hash for statfs64
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 statfs64
impl Eq for statfs64
impl StructuralEq for statfs64
impl StructuralPartialEq for statfs64
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
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