pub struct DfLine {
pub filesystem: String,
pub mounted: String,
pub total: u64,
pub used: u64,
}Expand description
A line of the df command
Fields§
§filesystem: StringFilesystem
mounted: StringMount point
total: u64Total size
used: u64Used size
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DfLine
impl RefUnwindSafe for DfLine
impl Send for DfLine
impl Sync for DfLine
impl Unpin for DfLine
impl UnwindSafe for DfLine
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