Sandwich view showing callers above and callees below a selected frame
| 155 | |
| 156 | /// Sandwich view showing callers above and callees below a selected frame |
| 157 | struct SandwichView { |
| 158 | #[allow(dead_code)] |
| 159 | selected_frame: FrameId, |
| 160 | selected_text: String, |
| 161 | callers: FlameGraphNode, |
| 162 | callees: FlameGraphNode, |
| 163 | } |
| 164 | |
| 165 | impl Default for FlameGraphWidget { |
| 166 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected