pub struct LibpodImagesRemoveReport {
    pub deleted: Option<Vec<String>>,
    pub errors: Option<Vec<String>>,
    pub exit_code: Option<i64>,
    pub untagged: Option<Vec<String>>,
}Available on crate feature 
v5 only.Expand description
LibpodImagesRemoveReport is the return type for image removal via the rest api.
Fields§
§deleted: Option<Vec<String>>Deleted images.
errors: Option<Vec<String>>Image removal requires is to return data and an error.
exit_code: Option<i64>ExitCode describes the exit codes as described in the podman rmi
man page.
untagged: Option<Vec<String>>Untagged images. Can be longer than Deleted.
Trait Implementations§
Source§impl Debug for LibpodImagesRemoveReport
 
impl Debug for LibpodImagesRemoveReport
Source§impl Default for LibpodImagesRemoveReport
 
impl Default for LibpodImagesRemoveReport
Source§fn default() -> LibpodImagesRemoveReport
 
fn default() -> LibpodImagesRemoveReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LibpodImagesRemoveReport
 
impl<'de> Deserialize<'de> for LibpodImagesRemoveReport
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 LibpodImagesRemoveReport
impl RefUnwindSafe for LibpodImagesRemoveReport
impl Send for LibpodImagesRemoveReport
impl Sync for LibpodImagesRemoveReport
impl Unpin for LibpodImagesRemoveReport
impl UnwindSafe for LibpodImagesRemoveReport
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