pub struct TagEvent {
pub created: Time,
pub docker_image_reference: String,
pub generation: i64,
pub image: String,
}
Expand description
TagEvent is used by ImageStreamStatus to keep a historical record of images associated with a tag.
Fields§
§created: Time
Created holds the time the TagEvent was created
docker_image_reference: String
DockerImageReference is the string that can be used to pull this image
generation: i64
Generation is the spec tag generation that resulted in this tag being updated
image: String
Image is the image
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TagEvent
impl<'de> Deserialize<'de> for TagEvent
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
impl StructuralPartialEq for TagEvent
Auto Trait Implementations§
impl Freeze for TagEvent
impl RefUnwindSafe for TagEvent
impl Send for TagEvent
impl Sync for TagEvent
impl Unpin for TagEvent
impl UnwindSafe for TagEvent
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