pub struct FlowGraphView {
pub projection_version: ProjectionVersion,
pub flow_id: String,
pub ir_hash: String,
pub nodes: Vec<GraphNode>,
pub edges: Vec<GraphEdge>,
pub flow_hooks: Vec<HookBadge>,
}Expand description
The graph projection of one FlowIR (spine §10.1).
Fields§
§projection_version: ProjectionVersionProtocol version (spine §10.3).
flow_id: StringThe projected flow.
ir_hash: StringThe projected flow’s content hash (full sha256: form).
nodes: Vec<GraphNode>Flat node list; nesting is expressed by parentId + region.
edges: Vec<GraphEdge>The closed three-class semantic edges (seq / branch / hook).
flow_hooks: Vec<HookBadge>Flow-level handler badges (hooks with no host step; step-level
hooks ride on hook edges anchored at their host node).
Trait Implementations§
Source§impl Clone for FlowGraphView
impl Clone for FlowGraphView
Source§fn clone(&self) -> FlowGraphView
fn clone(&self) -> FlowGraphView
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 moreSource§impl Debug for FlowGraphView
impl Debug for FlowGraphView
Source§impl<'de> Deserialize<'de> for FlowGraphView
impl<'de> Deserialize<'de> for FlowGraphView
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
Source§impl JsonSchema for FlowGraphView
impl JsonSchema for FlowGraphView
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for FlowGraphView
impl PartialEq for FlowGraphView
Source§impl Serialize for FlowGraphView
impl Serialize for FlowGraphView
impl StructuralPartialEq for FlowGraphView
Auto Trait Implementations§
impl Freeze for FlowGraphView
impl RefUnwindSafe for FlowGraphView
impl Send for FlowGraphView
impl Sync for FlowGraphView
impl Unpin for FlowGraphView
impl UnsafeUnpin for FlowGraphView
impl UnwindSafe for FlowGraphView
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