pub struct Image {
pub url: String,
pub title: String,
pub link: String,
pub width: Option<String>,
pub height: Option<String>,
pub description: Option<String>,
}Expand description
Represents an image in an RSS feed.
Fields§
§url: StringThe URL of the image.
title: StringA description of the image. This is used in the HTML alt attribute.
link: StringThe URL that the image links to.
width: Option<String>The width of the image.
height: Option<String>The height of the image.
description: Option<String>The text for the HTML title attribute of the link formed around the image.
Implementations§
Source§impl Image
impl Image
Sourcepub fn url(&self) -> &str
pub fn url(&self) -> &str
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");Sourcepub fn set_url<V>(&mut self, url: V)
pub fn set_url<V>(&mut self, url: V)
Set the URL of this image.
§Examples
use rss::Image;
let mut image = Image::default();
image.set_url("http://example.com/image.png");Sourcepub fn title(&self) -> &str
pub fn title(&self) -> &str
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");Sourcepub fn set_title<V>(&mut self, title: V)
pub fn set_title<V>(&mut self, title: V)
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");Sourcepub fn link(&self) -> &str
pub fn link(&self) -> &str
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");Sourcepub fn set_link<V>(&mut self, link: V)
pub fn set_link<V>(&mut self, link: V)
Set the URL that this image links to.
§Examples
use rss::Image;
let mut image = Image::default();
image.set_link("http://example.com");Sourcepub fn width(&self) -> Option<&str>
pub fn width(&self) -> Option<&str>
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"));Sourcepub fn set_width<V>(&mut self, width: V)
pub fn set_width<V>(&mut self, width: V)
Set the width of this image.
§Examples
use rss::Image;
let mut image = Image::default();
image.set_width("80".to_string());Sourcepub fn height(&self) -> Option<&str>
pub fn height(&self) -> Option<&str>
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"));Sourcepub fn set_height<V>(&mut self, height: V)
pub fn set_height<V>(&mut self, height: V)
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());Sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
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"));