[][src]Struct fuse3::reply::ReplyStatFs

pub struct ReplyStatFs {
    pub blocks: u64,
    pub bfree: u64,
    pub bavail: u64,
    pub files: u64,
    pub ffree: u64,
    pub bsize: u32,
    pub namelen: u32,
    pub frsize: u32,
}

statfs reply.

Fields

blocks: u64

the number of blocks in the filesystem.

bfree: u64

the number of free blocks.

bavail: u64

the number of free blocks for non-priviledge users.

files: u64

the number of inodes.

ffree: u64

the number of free inodes.

bsize: u32

the block size.

namelen: u32

the maximum length of file name.

frsize: u32

the fragment size.

Trait Implementations

impl Clone for ReplyStatFs[src]

impl Copy for ReplyStatFs[src]

impl Debug for ReplyStatFs[src]

impl Eq for ReplyStatFs[src]

impl PartialEq<ReplyStatFs> for ReplyStatFs[src]

impl StructuralEq for ReplyStatFs[src]

impl StructuralPartialEq for ReplyStatFs[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.