pub enum Event {
Operation(Operation),
Lifecycle(Value),
Logging(Value),
}Expand description
One event from the /1.0/events stream. Lifecycle and Logging
payloads stay untyped (serde_json::Value) for v1 - only Operation
events are fully typed, since that’s what operation-completion tracking
needs.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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