pub struct ImageEvent {
pub action: String,
pub image_ref: String,
pub image_id: String,
pub timestamp: DateTime<Utc>,
}Expand description
An image lifecycle event reported by a backend runtime.
Fields§
§action: StringEvent action (e.g. "pull", "delete", "tag", "untag", "import").
image_ref: StringBest-effort image reference.
image_id: StringImage identifier.
timestamp: DateTime<Utc>When the event occurred.
Trait Implementations§
Source§impl Clone for ImageEvent
impl Clone for ImageEvent
Source§fn clone(&self) -> ImageEvent
fn clone(&self) -> ImageEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImageEvent
impl Debug for ImageEvent
impl Eq for ImageEvent
Source§impl PartialEq for ImageEvent
impl PartialEq for ImageEvent
impl StructuralPartialEq for ImageEvent
Auto Trait Implementations§
impl Freeze for ImageEvent
impl RefUnwindSafe for ImageEvent
impl Send for ImageEvent
impl Sync for ImageEvent
impl Unpin for ImageEvent
impl UnsafeUnpin for ImageEvent
impl UnwindSafe for ImageEvent
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