pub struct Stats {
pub filesystem: String,
pub size_disk: u64,
pub used_disk: u64,
pub available_disk: u64,
pub percent_disk: f64,
pub mount: String,
pub total_inodes: u64,
pub used_inodes: u64,
pub available_inodes: u64,
pub percent_inodes: f64,
/* private fields */
}Fieldsยง
ยงfilesystem: Stringยงsize_disk: u64ยงused_disk: u64ยงavailable_disk: u64ยงpercent_disk: f64ยงmount: Stringยงtotal_inodes: u64ยงused_inodes: u64ยงavailable_inodes: u64ยงpercent_inodes: f64Implementationsยง
Trait Implementationsยง
Sourceยงimpl Ord for Stats
impl Ord for Stats
1.21.0 ยท Sourceยงfn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Sourceยงimpl PartialOrd for Stats
impl PartialOrd for Stats
impl Eq for Stats
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