(&mut self)
| 521 | |
| 522 | #[tracing::instrument(level = "debug", skip(self))] |
| 523 | pub fn clear_queue(&mut self) { |
| 524 | self.data.queue.song_queue.clear(); |
| 525 | self.data.queue.current_index = 0; |
| 526 | self.update_current_song(false); |
| 527 | } |
| 528 | |
| 529 | #[tracing::instrument(level = "debug", skip(self))] |
| 530 | pub fn clear_queue_except_current(&mut self) { |
no test coverage detected