Trait feed::ItemGetters [] [src]

pub trait ItemGetters {
    fn title(&self) -> Option<String>;
    fn link(&self) -> Option<String>;
    fn description(&self) -> Option<String>;
    fn author(&self) -> Option<String>;
    fn categories(&self) -> Vec<Category>;
    fn comments(&self) -> Option<String>;
    fn enclosure(&self) -> Option<Enclosure>;
    fn guid(&self) -> Option<Guid>;
    fn pub_date(&self) -> Option<String>;
    fn source(&self) -> Option<Source>;
    fn itunes_ext(&self) -> Option<ITunesItemExtension>;
}

The Getter functions for Item

Required Methods

Get the optional title that exists under Item.

Get the optional link that exists under Item.

Get the optional description that exists under Item.

Get the optional author that exists under Item.

Get the categories that exists under Item.

Get the optional comments that exists under Item.

Get the optional enclosure that exists under Item.

Get the optional guid that exists under Item.

Get the optional pub date that exists under Item.

Get the optional source that exists under Item.

Get the optional ITunesItemExtension under Item.

Implementors