pub struct DebugInfo {
pub workflow_id: String,
pub execution_id: String,
pub timestamp: DateTime<Utc>,
pub state: DebugState,
pub task_states: HashMap<String, TaskDebugState>,
pub breakpoints: Vec<Breakpoint>,
pub variables: HashMap<String, Value>,
pub call_stack: Vec<StackFrame>,
}Expand description
Debug information for a workflow execution.
Fields§
§workflow_id: StringWorkflow ID.
execution_id: StringExecution ID.
timestamp: DateTime<Utc>Debug timestamp.
state: DebugStateCurrent execution state.
task_states: HashMap<String, TaskDebugState>Task states.
breakpoints: Vec<Breakpoint>Breakpoints.
variables: HashMap<String, Value>Variables snapshot.
call_stack: Vec<StackFrame>Call stack.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DebugInfo
impl<'de> Deserialize<'de> for DebugInfo
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
Auto Trait Implementations§
impl Freeze for DebugInfo
impl RefUnwindSafe for DebugInfo
impl Send for DebugInfo
impl Sync for DebugInfo
impl Unpin for DebugInfo
impl UnsafeUnpin for DebugInfo
impl UnwindSafe for DebugInfo
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