[][src]Trait mygpoclient::settings::GetPodcastSettings

pub trait GetPodcastSettings {
    fn get_podcast_settings(
        &self,
        podcast: Url
    ) -> Result<HashMap<String, String>, Error>; }

Required methods

fn get_podcast_settings(
    &self,
    podcast: Url
) -> Result<HashMap<String, String>, Error>

Get Podcast Settings

Examples

use mygpoclient::client::AuthenticatedClient;
use mygpoclient::settings::GetPodcastSettings;
use url::Url;

let client = AuthenticatedClient::new(&username, &password);

let settings = client.get_podcast_settings(Url::parse("http://goinglinux.com/mp3podcast.xml").unwrap())?;

See also

Loading content...

Implementors

impl GetPodcastSettings for AuthenticatedClient[src]

impl GetPodcastSettings for DeviceClient[src]

Loading content...