Trait feed::ImageGetters [] [src]

pub trait ImageGetters {
    fn url(&self) -> String;
    fn title(&self) -> String;
    fn link(&self) -> String;
    fn width(&self) -> Option<String>;
    fn height(&self) -> Option<String>;
    fn description(&self) -> Option<String>;
}

The Getter functions for Image

Required Methods

Get the url that exists under Image.

Get the title that exists under Image.

Get the link that exists under Image.

Get the width that exists under Image.

Get the height that exists under Image.

Get the description that exists under Image.

Implementors