(&mut self, new_index: usize, force: bool)
| 301 | |
| 302 | #[tracing::instrument(level = "debug", skip(self, new_index))] |
| 303 | pub fn change_index(&mut self, new_index: usize, force: bool) { |
| 304 | self.data.queue.current_index = new_index; |
| 305 | self.update_current_song(force); |
| 306 | } |
| 307 | |
| 308 | #[tracing::instrument(level = "debug", skip(self, new_time))] |
| 309 | pub fn update_time(&mut self, new_time: f64) { |
no test coverage detected