Struct Statfs
struct Statfs(_)
Describes a mounted file system
Implementations
impl Statfs
fn filesystem_type(self: &Self) -> FsTypeMagic code defining system type
fn optimal_transfer_size(self: &Self) -> __fsword_tOptimal transfer block size
fn block_size(self: &Self) -> __fsword_tSize of a block
fn flags(self: &Self) -> FsFlagsGet the mount flags
fn maximum_name_length(self: &Self) -> __fsword_tMaximum length of filenames
fn blocks(self: &Self) -> u64Total data blocks in filesystem
fn blocks_free(self: &Self) -> u64Free blocks in filesystem
fn blocks_available(self: &Self) -> u64Free blocks available to unprivileged user
fn files(self: &Self) -> u64Total file nodes in filesystem
fn files_free(self: &Self) -> u64Free file nodes in filesystem
fn filesystem_id(self: &Self) -> fsid_tFilesystem ID
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) -> TReturns the argument unchanged.
impl<T> ToOwned for Statfs
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Statfs
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses 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>