Struct docker_api::opts::ImageListOptsBuilder
source · pub struct ImageListOptsBuilder { /* private fields */ }
Expand description
A builder struct for ImageListOpts.
Implementations§
source§impl ImageListOptsBuilder
impl ImageListOptsBuilder
sourcepub fn build(self) -> ImageListOpts
pub fn build(self) -> ImageListOpts
Finish building ImageListOpts.
source§impl ImageListOptsBuilder
impl ImageListOptsBuilder
sourcepub fn all(self, all: bool) -> Self
pub fn all(self, all: bool) -> Self
Show all images. Only images from a final layer (no children) are shown by default.
sourcepub fn digests(self, digests: bool) -> Self
pub fn digests(self, digests: bool) -> Self
Show digest information as a RepoDigests field on each image.
sourcepub fn filter(self, filters: impl IntoIterator<Item = ImageFilter>) -> Self
pub fn filter(self, filters: impl IntoIterator<Item = ImageFilter>) -> Self
Filter the listed images by one of the variants of the enum.
Trait Implementations§
source§impl Clone for ImageListOptsBuilder
impl Clone for ImageListOptsBuilder
source§fn clone(&self) -> ImageListOptsBuilder
fn clone(&self) -> ImageListOptsBuilder
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 ImageListOptsBuilder
impl Debug for ImageListOptsBuilder
source§impl Default for ImageListOptsBuilder
impl Default for ImageListOptsBuilder
source§fn default() -> ImageListOptsBuilder
fn default() -> ImageListOptsBuilder
Returns the “default value” for a type. Read more