pub struct ContainerPruneResult {
pub containers_deleted: Vec<String>,
pub space_reclaimed: u64,
}
Expand description
Result from container prune operation
Fields§
§containers_deleted: Vec<String>
List of deleted container IDs
space_reclaimed: u64
Total space reclaimed in bytes
Trait Implementations§
Source§impl Clone for ContainerPruneResult
impl Clone for ContainerPruneResult
Source§fn clone(&self) -> ContainerPruneResult
fn clone(&self) -> ContainerPruneResult
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 ContainerPruneResult
impl Debug for ContainerPruneResult
Source§impl<'de> Deserialize<'de> for ContainerPruneResult
impl<'de> Deserialize<'de> for ContainerPruneResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContainerPruneResult
impl RefUnwindSafe for ContainerPruneResult
impl Send for ContainerPruneResult
impl Sync for ContainerPruneResult
impl Unpin for ContainerPruneResult
impl UnwindSafe for ContainerPruneResult
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