pub enum EventKind {
Schema,
StepStarted,
StepFinished,
ChildOutput,
RunFinished,
}Expand description
Every event type the stream can carry; additions append, and no variant is ever renamed.
Variants§
Schema
The opening event naming the schema version.
StepStarted
One step began.
StepFinished
One step ended, with its status and duration.
ChildOutput
One chunk of a child process’s output, tagged with its stream.
RunFinished
The run ended.
Trait Implementations§
impl Copy for EventKind
impl Eq for EventKind
impl StructuralPartialEq for EventKind
Auto Trait Implementations§
impl Freeze for EventKind
impl RefUnwindSafe for EventKind
impl Send for EventKind
impl Sync for EventKind
impl Unpin for EventKind
impl UnsafeUnpin for EventKind
impl UnwindSafe for EventKind
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