Struct rss::Image 
                   
                       [−]
                   
               [src]
pub struct Image {
    pub url: String,
    pub title: String,
    pub link: String,
    pub width: String,
    pub height: String,
}A representation of the <image> element.
Fields
url: String
                           The URL of the channel image.
title: String
                           A description of the image.
link: String
                           The URL that the image links to.
width: String
                           The width of the image.
height: String
                           The height of the image.
Trait Implementations
impl PartialEq for Image[src]
fn eq(&self, __arg_0: &Image) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Image) -> bool
This method tests for !=.
impl Clone for Image[src]
fn clone(&self) -> Image
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more