pub struct ImageTag {
pub index: ImageTagIndex,
pub display_name: String,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
}
Expand description
Represents a tag.
Fields§
§index: ImageTagIndex
Index of the tag.
display_name: String
The tag’s name.
created_at: DateTime<Utc>
When the tag was created.
updated_at: Option<DateTime<Utc>>
When the tag was last updated.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ImageTag
impl<'de> Deserialize<'de> for ImageTag
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 ImageTag
impl RefUnwindSafe for ImageTag
impl Send for ImageTag
impl Sync for ImageTag
impl Unpin for ImageTag
impl UnwindSafe for ImageTag
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