(&self)
| 126 | |
| 127 | #[tracing::instrument(level = "debug", skip(self))] |
| 128 | pub async fn initialize_players(&self) { |
| 129 | let players = self.players.lock().await; |
| 130 | for player in players.iter() { |
| 131 | player.initialize(self.player_container); |
| 132 | } |
| 133 | tracing::debug!("Initialized players") |
| 134 | } |
| 135 | |
| 136 | #[tracing::instrument(level = "debug", skip(self))] |
| 137 | pub async fn stop_playback(&self) -> Result<()> { |
no test coverage detected