Type Alias ImagesRemoveResponseLibpod

Source
pub type ImagesRemoveResponseLibpod = LibpodImagesRemoveReport;
Expand description

LibpodImagesRemoveReport is the return type for image removal via the rest api.

Aliased Type§

pub struct ImagesRemoveResponseLibpod {
    pub deleted: Option<Vec<String>>,
    pub errors: Option<Vec<String>>,
    pub exit_code: Option<i64>,
    pub untagged: Option<Vec<String>>,
}

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

Source§

fn clone(&self) -> LibpodImagesRemoveReport

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for LibpodImagesRemoveReport

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for LibpodImagesRemoveReport

Source§

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

Source§

fn eq(&self, other: &LibpodImagesRemoveReport) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

const fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for LibpodImagesRemoveReport

Source§

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
Source§

impl StructuralPartialEq for LibpodImagesRemoveReport