| 802 | /// Node in the flame graph tree structure. |
| 803 | #[derive(Debug, Clone)] |
| 804 | struct 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 | |
| 814 | impl Default for FlameGraphNode { |
| 815 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected