(&self)
| 138 | |
| 139 | #[tracing::instrument(level = "debug", skip(self))] |
| 140 | fn provides(&self) -> &[types::songs::SongType] { |
| 141 | &[ |
| 142 | SongType::LOCAL, |
| 143 | SongType::URL, |
| 144 | SongType::YOUTUBE, |
| 145 | SongType::SPOTIFY, |
| 146 | ] |
| 147 | } |
| 148 | |
| 149 | #[tracing::instrument(level = "debug", skip(self, song))] |
| 150 | fn can_play(&self, song: &types::songs::Song) -> bool { |