Type Alias BrowserMirEdge

Source
pub type BrowserMirEdge = BrowserGraphEdge;
Expand description

A single directed browser MIR graph edge.

Aliased Type§

struct BrowserMirEdge {
    pub id: String,
    pub source: String,
    pub target: String,
    pub label: Option<String>,
    pub category: &'static str,
}

Fields§

§id: String

Stable synthetic edge id.

§source: String

Source node id.

§target: String

Target node id.

§label: Option<String>

Optional edge label shown in the viewer.

§category: &'static str

Viewer category used for edge styling.