pub struct VolumePruneResult {
pub deleted_volumes: Vec<String>,
pub space_reclaimed: Option<u64>,
pub raw_output: CommandOutput,
}
Expand description
Result from volume prune
Fields§
§deleted_volumes: Vec<String>
Names of deleted volumes
space_reclaimed: Option<u64>
Amount of disk space reclaimed in bytes
raw_output: CommandOutput
Raw command output
Trait Implementations§
Source§impl Clone for VolumePruneResult
impl Clone for VolumePruneResult
Source§fn clone(&self) -> VolumePruneResult
fn clone(&self) -> VolumePruneResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VolumePruneResult
impl Debug for VolumePruneResult
Source§impl From<CommandOutput> for VolumePruneResult
impl From<CommandOutput> for VolumePruneResult
Source§fn from(output: CommandOutput) -> Self
fn from(output: CommandOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VolumePruneResult
impl RefUnwindSafe for VolumePruneResult
impl Send for VolumePruneResult
impl Sync for VolumePruneResult
impl Unpin for VolumePruneResult
impl UnwindSafe for VolumePruneResult
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