(&self)
| 92 | } |
| 93 | |
| 94 | pub(crate) fn stop(&self) { |
| 95 | if let Some(s) = self.sink.borrow_mut().take() { |
| 96 | s.stop(); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | pub(crate) fn change_volume(&self, volume: f32) { |
| 101 | let mut sink = self.sink.borrow_mut(); |
no outgoing calls
no test coverage detected