pub enum WorkflowEvent {
Started {
execution_id: String,
workflow_id: String,
total_steps: usize,
},
StepStarted {
execution_id: String,
step_index: usize,
step_name: String,
},
StepCompleted {
execution_id: String,
step_index: usize,
step_name: String,
success: bool,
output: String,
duration_ms: u64,
},
BreakpointHit {
execution_id: String,
step_index: usize,
step_name: String,
message: String,
},
Completed {
execution_id: String,
success: bool,
steps_completed: usize,
total_steps: usize,
duration_ms: u64,
error: Option<String>,
},
}Expand description
SSE event types that the adapter consumes. Mirrors mur_daemon::sse::WorkflowEvent but decoupled to avoid circular deps.
Variants§
Trait Implementations§
Source§impl Clone for WorkflowEvent
impl Clone for WorkflowEvent
Source§fn clone(&self) -> WorkflowEvent
fn clone(&self) -> WorkflowEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WorkflowEvent
impl RefUnwindSafe for WorkflowEvent
impl Send for WorkflowEvent
impl Sync for WorkflowEvent
impl Unpin for WorkflowEvent
impl UnsafeUnpin for WorkflowEvent
impl UnwindSafe for WorkflowEvent
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