pub struct SystemCheck {
pub containers: HashMap<String, Vec<String>>,
pub errors: bool,
pub images: HashMap<String, Vec<String>>,
pub layers: HashMap<String, Vec<String>>,
pub ro_images: Option<HashMap<String, Vec<String>>>,
pub ro_layers: Option<HashMap<String, Vec<String>>>,
pub removed_containers: Option<HashMap<String, Vec<String>>>,
pub removed_images: Option<HashMap<String, Vec<String>>>,
pub removed_layers: Option<Vec<String>>,
}
Fields§
§containers: HashMap<String, Vec<String>>
§errors: bool
§images: HashMap<String, Vec<String>>
§layers: HashMap<String, Vec<String>>
§ro_images: Option<HashMap<String, Vec<String>>>
§ro_layers: Option<HashMap<String, Vec<String>>>
§removed_containers: Option<HashMap<String, Vec<String>>>
§removed_images: Option<HashMap<String, Vec<String>>>
§removed_layers: Option<Vec<String>>
Trait Implementations§
Source§impl Debug for SystemCheck
impl Debug for SystemCheck
Source§impl<'de> Deserialize<'de> for SystemCheck
impl<'de> Deserialize<'de> for SystemCheck
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 SystemCheck
impl RefUnwindSafe for SystemCheck
impl Send for SystemCheck
impl Sync for SystemCheck
impl Unpin for SystemCheck
impl UnwindSafe for SystemCheck
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