Struct bollard::models::BuildCache[][src]

pub struct BuildCache {
    pub id: Option<String>,
    pub parent: Option<String>,
    pub typ: Option<String>,
    pub description: Option<String>,
    pub in_use: Option<bool>,
    pub shared: Option<bool>,
    pub size: Option<i64>,
    pub created_at: Option<DateTime<Utc>>,
    pub last_used_at: Option<DateTime<Utc>>,
    pub usage_count: Option<i64>,
}

Fields

id: Option<String>parent: Option<String>typ: Option<String>description: Option<String>in_use: Option<bool>shared: Option<bool>size: Option<i64>

Amount of disk space used by the build cache (in bytes).

created_at: Option<DateTime<Utc>>

Date and time at which the build cache was created in RFC 3339 format with nano-seconds.

last_used_at: Option<DateTime<Utc>>

Date and time at which the build cache was last used in RFC 3339 format with nano-seconds.

usage_count: Option<i64>

Trait Implementations

impl Clone for BuildCache[src]

impl Debug for BuildCache[src]

impl Default for BuildCache[src]

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

impl PartialEq<BuildCache> for BuildCache[src]

impl Serialize for BuildCache[src]

impl StructuralPartialEq for BuildCache[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.