Type Alias BrowserHirEdge
pub type BrowserHirEdge = BrowserGraphEdge;Expand description
A single directed browser HIR graph edge.
Aliased Type§
struct BrowserHirEdge {
pub id: String,
pub source: String,
pub target: String,
pub label: Option<String>,
pub category: &'static str,
}Fields§
§id: StringStable synthetic edge id.
source: StringSource node id.
target: StringTarget node id.
label: Option<String>Optional edge label shown in the viewer.
category: &'static strViewer category used for edge styling.