pub struct StatFs {
pub fs_type: u32,
pub block_size: u32,
pub blocks: u64,
pub blocks_free: u64,
pub blocks_available: u64,
pub file_count: u64,
pub free_file_count: u64,
pub name_length: u32,
pub fragment_size: u32,
pub mount_flags: u32,
}Fields§
§fs_type: u32§block_size: u32§blocks: u64§blocks_free: u64§blocks_available: u64§file_count: u64§free_file_count: u64§name_length: u32§fragment_size: u32§mount_flags: u32Auto Trait Implementations§
impl Freeze for StatFs
impl RefUnwindSafe for StatFs
impl Send for StatFs
impl Sync for StatFs
impl Unpin for StatFs
impl UnwindSafe for StatFs
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