Type Alias BrowserMirGraph

Source
pub type BrowserMirGraph = BrowserGraph;
Expand description

Browser-friendly MIR graph payload for interactive viewers.

Aliased Type§

struct BrowserMirGraph {
    pub root_id: String,
    pub nodes: Vec<BrowserGraphNode>,
    pub edges: Vec<BrowserGraphEdge>,
}

Fields§

§root_id: String

Root node id used by the viewer layout.

§nodes: Vec<BrowserGraphNode>

All graph nodes.

§edges: Vec<BrowserGraphEdge>

All directed graph edges.