[][src]Struct rss::Image

pub struct Image { /* fields omitted */ }

Represents an image in an RSS feed.

Methods

impl Image[src]

pub fn url(&self) -> &str[src]

Return the URL of this image.

Examples

use rss::Image;

let mut image = Image::default();
image.set_url("http://example.com/image.png");
assert_eq!(image.url(), "http://example.com/image.png");

pub fn set_url<V>(&mut self, url: V) where
    V: Into<String>, 
[src]

Set the URL of this image.

Examples

use rss::Image;

let mut image = Image::default();
image.set_url("http://example.com/image.png");

pub fn title(&self) -> &str[src]

Return the description of this image.

This is used in the HTML alt attribute.

Examples

use rss::Image;

let mut image = Image::default();
image.set_title("Example image");
assert_eq!(image.title(), "Example image");

pub fn set_title<V>(&mut self, title: V) where
    V: Into<String>, 
[src]

Set the description of this image.

This is used in the HTML alt attribute.

Examples

use rss::Image;

let mut image = Image::default();
image.set_title("Example image");

Return the URL that this image links to.

Examples

use rss::Image;

let mut image = Image::default();
image.set_link("http://example.com");
assert_eq!(image.link(), "http://example.com");

Set the URL that this image links to.

Examples

use rss::Image;

let mut image = Image::default();
image.set_link("http://example.com");

pub fn width(&self) -> Option<&str>[src]

Return the width of this image.

If the width is None the default value should be considered to be 80.

Examples

use rss::Image;

let mut image = Image::default();
image.set_width("80".to_string());
assert_eq!(image.width(), Some("80"));

pub fn set_width<V>(&mut self, width: V) where
    V: Into<Option<String>>, 
[src]

Set the width of this image.

Examples

use rss::Image;

let mut image = Image::default();
image.set_width("80".to_string());

pub fn height(&self) -> Option<&str>[src]

Return the height of this image.

If the height is None the default value should be considered to be 31.

Examples

use rss::Image;

let mut image = Image::default();
image.set_height("31".to_string());
assert_eq!(image.height(), Some("31"));

pub fn set_height<V>(&mut self, height: V) where
    V: Into<Option<String>>, 
[src]

Set the height of this image.

If the height is None the default value should be considered to be 31.

Examples

use rss::Image;

let mut image = Image::default();
image.set_height("31".to_string());

pub fn description(&self) -> Option<&str>[src]

Return the title for the link formed around this image.

Examples

use rss::Image;

let mut image = Image::default();
image.set_description("Example Title".to_string());
assert_eq!(image.description(), Some("Example Title"));

pub fn set_description<V>(&mut self, description: V) where
    V: Into<Option<String>>, 
[src]

Set the title for the link formed around this image.

Examples

use rss::Image;

let mut image = Image::default();
image.set_description("Example Title".to_string());

impl Image[src]

pub fn from_xml<R: BufRead>(
    reader: &mut Reader<R>,
    _: Attributes
) -> Result<Self, Error>
[src]

Builds an Image from source XML

Trait Implementations

impl PartialEq<Image> for Image[src]

impl Clone for Image[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Image[src]

impl Debug for Image[src]

Auto Trait Implementations

impl Send for Image

impl Sync for Image

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]