(
&mut self,
ui: &mut Ui,
_cfg: &DevfilerConfig,
_kind: SampleKind,
_start: UtcTimestamp,
_end: UtcTimestamp,
)
| 60 | } |
| 61 | |
| 62 | fn update( |
| 63 | &mut self, |
| 64 | ui: &mut Ui, |
| 65 | _cfg: &DevfilerConfig, |
| 66 | _kind: SampleKind, |
| 67 | _start: UtcTimestamp, |
| 68 | _end: UtcTimestamp, |
| 69 | ) -> Option<TabAction> { |
| 70 | self.handle_executable_drops(ui.ctx()); |
| 71 | self.draw_sym_status_bar(ui); |
| 72 | self.draw_symbol_ingest_area(ui); |
| 73 | self.last_exe_count = self.draw_executable_table(ui); |
| 74 | None |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | impl ExecutablesTab { |
nothing calls this directly
no test coverage detected