Struct bollard::models::ImageSummary[][src]

pub struct ImageSummary {
    pub id: String,
    pub parent_id: String,
    pub repo_tags: Vec<String, Global>,
    pub repo_digests: Vec<String, Global>,
    pub created: i64,
    pub size: i64,
    pub shared_size: i64,
    pub virtual_size: i64,
    pub labels: HashMap<String, String, RandomState>,
    pub containers: i64,
}

Fields

id: Stringparent_id: Stringrepo_tags: Vec<String, Global>repo_digests: Vec<String, Global>created: i64size: i64shared_size: i64virtual_size: i64labels: HashMap<String, String, RandomState>containers: i64

Trait Implementations

impl Clone for ImageSummary[src]

impl Debug for ImageSummary[src]

impl Default for ImageSummary[src]

impl<'de> Deserialize<'de> for ImageSummary[src]

impl PartialEq<ImageSummary> for ImageSummary[src]

impl Serialize for ImageSummary[src]

impl StructuralPartialEq for ImageSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.