pub struct HistoryResponse {
    pub comment: Option<String>,
    pub created: Option<i64>,
    pub created_by: Option<String>,
    pub id: Option<String>,
    pub size: Option<i64>,
    pub tags: Option<Vec<String>>,
}Available on crate feature 
v5 only.Expand description
HistoryResponse provides details on image layers
Fields§
§comment: Option<String>§created: Option<i64>§created_by: Option<String>§id: Option<String>§size: Option<i64>Trait Implementations§
Source§impl Debug for HistoryResponse
 
impl Debug for HistoryResponse
Source§impl Default for HistoryResponse
 
impl Default for HistoryResponse
Source§fn default() -> HistoryResponse
 
fn default() -> HistoryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistoryResponse
 
impl<'de> Deserialize<'de> for HistoryResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HistoryResponse
impl RefUnwindSafe for HistoryResponse
impl Send for HistoryResponse
impl Sync for HistoryResponse
impl Unpin for HistoryResponse
impl UnwindSafe for HistoryResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more