pub struct ExecutionTrace {
pub executed_nodes: Vec<NodeId>,
pub node_details: HashMap<NodeId, NodeExecutionDetail>,
pub total_time_ms: u64,
pub node_count: usize,
pub branches_taken: HashMap<NodeId, Vec<String>>,
}Expand description
Execution trace showing the path taken through the workflow
Fields§
§executed_nodes: Vec<NodeId>Ordered list of nodes executed
node_details: HashMap<NodeId, NodeExecutionDetail>Node execution details
total_time_ms: u64Total simulated execution time (ms)
node_count: usizeNumber of nodes executed
branches_taken: HashMap<NodeId, Vec<String>>Branches taken in conditional nodes
Trait Implementations§
Source§impl Clone for ExecutionTrace
impl Clone for ExecutionTrace
Source§fn clone(&self) -> ExecutionTrace
fn clone(&self) -> ExecutionTrace
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 moreSource§impl Debug for ExecutionTrace
impl Debug for ExecutionTrace
Source§impl<'de> Deserialize<'de> for ExecutionTrace
impl<'de> Deserialize<'de> for ExecutionTrace
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 ExecutionTrace
impl RefUnwindSafe for ExecutionTrace
impl Send for ExecutionTrace
impl Sync for ExecutionTrace
impl Unpin for ExecutionTrace
impl UnwindSafe for ExecutionTrace
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