pub struct HistoryResponseItem {
pub comment: String,
pub created: i64,
pub created_by: String,
pub id: String,
pub size: i64,
pub tags: Vec<String>,
}
Available on crate feature
v5
only.Expand description
HistoryResponseItem individual image layer information in response to ImageHistory operation
Fields§
§comment: String
comment
created: i64
created
created_by: String
created by
id: String
Id
size: i64
size
tags
Trait Implementations§
Source§impl Debug for HistoryResponseItem
impl Debug for HistoryResponseItem
Source§impl Default for HistoryResponseItem
impl Default for HistoryResponseItem
Source§fn default() -> HistoryResponseItem
fn default() -> HistoryResponseItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistoryResponseItem
impl<'de> Deserialize<'de> for HistoryResponseItem
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 HistoryResponseItem
impl RefUnwindSafe for HistoryResponseItem
impl Send for HistoryResponseItem
impl Sync for HistoryResponseItem
impl Unpin for HistoryResponseItem
impl UnwindSafe for HistoryResponseItem
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