pub struct Stats {
pub size: u64,
pub free: u64,
pub inodes: Option<Inodes>,
}Expand description
inode & storage usage information
Fields§
§size: u64number of bytes
free: u64number of free bytes
inodes: Option<Inodes>information relative to inodes, if available
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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