Cancel any running log stream task.
(&mut self)
| 2741 | |
| 2742 | /// Cancel any running log stream task. |
| 2743 | pub fn cancel_log_stream(&mut self) { |
| 2744 | if let Some(handle) = self.log_stream_handle.take() { |
| 2745 | handle.abort(); |
| 2746 | } |
| 2747 | } |
| 2748 | |
| 2749 | /// Stop the animation ticker if running. |
| 2750 | pub fn stop_anim(&mut self) { |
no test coverage detected