(&mut self, song: Song)
| 280 | |
| 281 | #[tracing::instrument(level = "debug", skip(self, song))] |
| 282 | pub fn play_next(&mut self, song: Song) { |
| 283 | self.insert_song_at_index(song, self.data.queue.current_index + 1, true); |
| 284 | } |
| 285 | |
| 286 | #[tracing::instrument(level = "debug", skip(self, songs))] |
| 287 | pub fn play_next_multiple(&mut self, songs: Vec<Song>) { |
no test coverage detected