pub struct Row {
pub kind: String,
pub total: Option<u64>,
pub active: Option<u64>,
pub bytes: Option<u64>,
pub reclaimable: Option<u64>,
}Expand description
One line of an engine’s own disk-usage report.
Fields§
§kind: StringImages, Containers, Local Volumes, Build Cache — the engine’s own word
for it, kept verbatim so the row matches what docker system df prints.
total: Option<u64>How many of them there are, when the engine says.
active: Option<u64>How many of those are in use.
bytes: Option<u64>Bytes on disk.
reclaimable: Option<u64>Bytes the engine believes it could give back.
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnsafeUnpin for Row
impl UnwindSafe for Row
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more