pub struct LibpodImagesRemoveReport {
pub deleted: Option<Vec<String>>,
pub errors: Option<Vec<String>>,
pub exit_code: Option<i64>,
pub untagged: Option<Vec<String>>,
}
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 Clone for LibpodImagesRemoveReport
impl Clone for LibpodImagesRemoveReport
Source§fn clone(&self) -> LibpodImagesRemoveReport
fn clone(&self) -> LibpodImagesRemoveReport
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LibpodImagesRemoveReport
impl Debug for LibpodImagesRemoveReport
Source§impl<'de> Deserialize<'de> for LibpodImagesRemoveReport
impl<'de> Deserialize<'de> for LibpodImagesRemoveReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LibpodImagesRemoveReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LibpodImagesRemoveReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LibpodImagesRemoveReport
impl PartialEq for LibpodImagesRemoveReport
Source§fn eq(&self, other: &LibpodImagesRemoveReport) -> bool
fn eq(&self, other: &LibpodImagesRemoveReport) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for LibpodImagesRemoveReport
impl Serialize for LibpodImagesRemoveReport
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 LibpodImagesRemoveReport
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