pub struct SystemPruneReport {
pub container_prune_reports: Option<Vec<PruneReport>>,
pub image_prune_reports: Option<Vec<PruneReport>>,
pub network_prune_reports: Option<Vec<NetworkPruneReport>>,
pub pod_prune_report: Option<Vec<PodPruneReport>>,
pub reclaimed_space: Option<u64>,
pub volume_prune_reports: Option<Vec<PruneReport>>,
}
Available on crate feature
v5
only.Expand description
SystemPruneReport provides report after system prune is executed.
Fields§
§container_prune_reports: Option<Vec<PruneReport>>
§image_prune_reports: Option<Vec<PruneReport>>
§network_prune_reports: Option<Vec<NetworkPruneReport>>
§pod_prune_report: Option<Vec<PodPruneReport>>
§reclaimed_space: Option<u64>
§volume_prune_reports: Option<Vec<PruneReport>>
Trait Implementations§
Source§impl Debug for SystemPruneReport
impl Debug for SystemPruneReport
Source§impl Default for SystemPruneReport
impl Default for SystemPruneReport
Source§fn default() -> SystemPruneReport
fn default() -> SystemPruneReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SystemPruneReport
impl<'de> Deserialize<'de> for SystemPruneReport
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 SystemPruneReport
impl RefUnwindSafe for SystemPruneReport
impl Send for SystemPruneReport
impl Sync for SystemPruneReport
impl Unpin for SystemPruneReport
impl UnwindSafe for SystemPruneReport
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