pub trait SourcePort {
    fn get_playlists(&self) -> Result<Vec<Playlist<'_>>, SourceError>;
}

Required methods

Implementors