Struct statfs

struct statfs { ... }

Fields

f_type: __kernel_long_t
f_bsize: __kernel_long_t
f_blocks: __kernel_long_t
f_bfree: __kernel_long_t
f_bavail: __kernel_long_t
f_files: __kernel_long_t
f_ffree: __kernel_long_t
f_fsid: __kernel_fsid_t
f_namelen: __kernel_long_t
f_frsize: __kernel_long_t
f_flags: __kernel_long_t
f_spare: [__kernel_long_t; 4]

Implementations

impl Clone for statfs

fn clone(self: &Self) -> statfs

impl Copy for statfs

impl Debug for statfs

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl Freeze for statfs

impl RefUnwindSafe for statfs

impl Send for statfs

impl Sync for statfs

impl Unpin for statfs

impl UnsafeUnpin for statfs

impl UnwindSafe for statfs

impl<T> Any for statfs

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for statfs

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for statfs

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for statfs

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for statfs

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for statfs

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for statfs

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for statfs

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>