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>>,
}
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 Clone for SystemPruneReport
impl Clone for SystemPruneReport
Source§fn clone(&self) -> SystemPruneReport
fn clone(&self) -> SystemPruneReport
Returns a copy 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 SystemPruneReport
impl Debug for SystemPruneReport
Source§impl<'de> Deserialize<'de> for SystemPruneReport
impl<'de> Deserialize<'de> for SystemPruneReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SystemPruneReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SystemPruneReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SystemPruneReport
impl PartialEq for SystemPruneReport
Source§impl Serialize for SystemPruneReport
impl Serialize for SystemPruneReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SystemPruneReport
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