#[repr(C)]pub struct fuse_kstatfs {
pub blocks: u64,
pub bfree: u64,
pub bavail: u64,
pub files: u64,
pub ffree: u64,
pub bsize: u32,
pub namelen: u32,
pub frsize: u32,
pub padding: u32,
pub spare: [u32; 6],
}
Fields§
§blocks: u64
§bfree: u64
§bavail: u64
§files: u64
§ffree: u64
§bsize: u32
§namelen: u32
§frsize: u32
§padding: u32
§spare: [u32; 6]
Trait Implementations§
Source§impl AsBytes for fuse_kstatfs
impl AsBytes for fuse_kstatfs
Source§impl Clone for fuse_kstatfs
impl Clone for fuse_kstatfs
Source§fn clone(&self) -> fuse_kstatfs
fn clone(&self) -> fuse_kstatfs
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for fuse_kstatfs
impl Default for fuse_kstatfs
Source§fn default() -> fuse_kstatfs
fn default() -> fuse_kstatfs
Returns the “default value” for a type. Read more
impl Copy for fuse_kstatfs
impl FromBytes for fuse_kstatfs
Auto Trait Implementations§
impl Freeze for fuse_kstatfs
impl RefUnwindSafe for fuse_kstatfs
impl Send for fuse_kstatfs
impl Sync for fuse_kstatfs
impl Unpin for fuse_kstatfs
impl UnwindSafe for fuse_kstatfs
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