[][src]Struct wharf::result::ImageHistory

pub struct ImageHistory {
    pub id: String,
    pub created: i64,
    pub created_by: String,
    pub tags: Value,
    pub size: i64,
    pub comment: String,
}

The history of image usage returned from image.history()

Fields

id: Stringcreated: i64created_by: Stringtags: Valuesize: i64comment: String

Trait Implementations

impl Debug for ImageHistory[src]

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

impl Serialize for ImageHistory[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: Deserialize<'de>, 
[src]

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

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

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.