pub struct PrunedContainers {
pub containers_deleted: Vec<String>,
pub space_reclaimed: i64,
}Expand description
Response of the prune containers api
Fields§
§containers_deleted: Vec<String>§space_reclaimed: i64Trait Implementations§
Source§impl Clone for PrunedContainers
impl Clone for PrunedContainers
Source§fn clone(&self) -> PrunedContainers
fn clone(&self) -> PrunedContainers
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 PrunedContainers
impl Debug for PrunedContainers
Source§impl<'de> Deserialize<'de> for PrunedContainers
impl<'de> Deserialize<'de> for PrunedContainers
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
Source§impl PartialEq for PrunedContainers
impl PartialEq for PrunedContainers
Source§impl PartialOrd for PrunedContainers
impl PartialOrd for PrunedContainers
Source§impl Serialize for PrunedContainers
impl Serialize for PrunedContainers
impl StructuralPartialEq for PrunedContainers
Auto Trait Implementations§
impl Freeze for PrunedContainers
impl RefUnwindSafe for PrunedContainers
impl Send for PrunedContainers
impl Sync for PrunedContainers
impl Unpin for PrunedContainers
impl UnwindSafe for PrunedContainers
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