Trait feed::ChannelGetters [] [src]

pub trait ChannelGetters {
    fn title(&self) -> String;
    fn link(&self) -> String;
    fn description(&self) -> String;
    fn language(&self) -> Option<String>;
    fn copyright(&self) -> Option<String>;
    fn managing_editor(&self) -> Option<String>;
    fn webmaster(&self) -> Option<String>;
    fn pub_date(&self) -> Option<String>;
    fn last_build_date(&self) -> Option<String>;
    fn categories(&self) -> Vec<Category>;
    fn generator(&self) -> Option<String>;
    fn docs(&self) -> Option<String>;
    fn cloud(&self) -> Option<Cloud>;
    fn ttl(&self) -> Option<String>;
    fn image(&self) -> Option<Image>;
    fn text_input(&self) -> Option<TextInput>;
    fn rating(&self) -> Option<String>;
    fn skip_hours(&self) -> Vec<String>;
    fn skip_days(&self) -> Vec<String>;
    fn items(&self) -> Vec<Item>;
    fn itunes_ext(&self) -> Option<ITunesChannelExtension>;
}

The Getter functions for Channel

Required Methods

Get the title that exists under Channel.

Get the link that exists under Channel.

Get the description that exists under Channel.

Get the optional language that exists under Channel.

Get the optional copyright that exists under Channel.

Get the optional managing editor that exists under Channel.

Get the optional web master that exists under Channel.

Get the optional pub date that exists under Channel.

Get the optional last build date that exists under Channel.

Get the categories that exists under Channel.

Get the optional generator that exists under Channel.

Get the optional docs that exists under Channel.

Get the optional cloud that exists under Channel.

Get the optional ttl that exists under Channel.

Get the optional image that exists under Channel.

Get the optional text input that exists under Channel.

Get the optional rating that exists under Channel.

Get the skip hours that exists under Channel.

Get the skip days that exists under Channel.

Get the items that exists under Channel.

Get the optional ITunesChannelExtension under Channel.

Implementors