MCPcopy Create free account
hub / github.com/elastic/devfiler / FlameGraphNode

Class FlameGraphNode

src/ui/tabs/flamegraph.rs:804–812  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

802/// Node in the flame graph tree structure.
803#[derive(Debug, Clone)]
804struct FlameGraphNode {
805 pub weight: u64,
806 pub fg_color: Color32,
807 pub bg_color: Color32,
808 pub id: FrameId,
809 pub text: String,
810 pub inline_skip: u16,
811 pub children: Vec<FlameGraphNode>,
812}
813
814impl Default for FlameGraphNode {
815 fn default() -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected