pub struct WorkflowGraph {
pub dependency_graph: DependencyGraph,
pub workflow_metadata: WorkflowMetadata,
pub execution_nodes: Vec<ExecutionNode>,
pub execution_flow: Vec<ExecutionEdge>,
}Expand description
Workflow-specific graph export that includes run context and node relationships.
This extends the basic dependency graph with workflow-specific information like node execution order, workflow metadata, and run context.
Fields§
§dependency_graph: DependencyGraphBase dependency graph
workflow_metadata: WorkflowMetadataWorkflow execution metadata
execution_nodes: Vec<ExecutionNode>Execution nodes in the workflow
execution_flow: Vec<ExecutionEdge>Execution flow between nodes
Trait Implementations§
Source§impl Clone for WorkflowGraph
impl Clone for WorkflowGraph
Source§fn clone(&self) -> WorkflowGraph
fn clone(&self) -> WorkflowGraph
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkflowGraph
impl RefUnwindSafe for WorkflowGraph
impl Send for WorkflowGraph
impl Sync for WorkflowGraph
impl Unpin for WorkflowGraph
impl UnsafeUnpin for WorkflowGraph
impl UnwindSafe for WorkflowGraph
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