(&self)
| 94 | true |
| 95 | } |
| 96 | |
| 97 | fn effective_volume(&self) -> f32 { |
| 98 | if self.muted { 0.0 } else { self.volume } |
| 99 | } |
| 100 | |
| 101 | fn sync_playback_state(&mut self) { |
| 102 | if self.playback_state != PlaybackState::Playing { |
| 103 | return; |
| 104 | } |
| 105 |
no outgoing calls
no test coverage detected