| 72 | |
| 73 | #[derive(Debug, Clone)] |
| 74 | pub struct PlaybackState { |
| 75 | song: SongItem, |
| 76 | start_time: Instant, |
| 77 | elapsed_before_pause: Duration, |
| 78 | is_paused: bool, |
| 79 | } |
| 80 | |
| 81 | #[allow(dead_code)] |
| 82 | impl PlaybackState { |
nothing calls this directly
no outgoing calls
no test coverage detected