Struct rss::extension::itunes::ITunesItemExtension [] [src]

pub struct ITunesItemExtension {
    pub author: Option<String>,
    pub block: Option<String>,
    pub image: Option<String>,
    pub duration: Option<String>,
    pub explicit: Option<String>,
    pub closed_captioned: Option<String>,
    pub order: Option<String>,
    pub subtitle: Option<String>,
    pub summary: Option<String>,
    pub keywords: Option<String>,
}

An iTunes item element extension.

Fields

The author of the podcast episode.

Specifies if the podcast episode should be prevented from appearing in the iTunes Store. A value of Yes indicates that the episode should not show up in the iTunes Store. All other values are ignored.

The artwork for the podcast episode.

The podcast episode duration in one of the following formats: HH:MM:SS, H:MM:SS, MM:SS, M:SS.

Specifies whether the podcast episode contains explicit content. A value of Yes, Explicit, or True indicates that the episode contains explicit content. A value of Clean, No, False inidicates that episode does not contain explicit content.

Specifies whether the podcast episode contains embedded closed captioning. A value of Yes indicates that it does. Any other value indicates that it does not.

A value used to override the default sorting order for episodes.

A description of the podcast episode.

A summary of the podcast episode.

Keywords for the podcast. The string contains a comma separated list of keywords.

Methods

impl ITunesItemExtension
[src]

Creates an ITunesChannelExtension using the specified hashmap.

Trait Implementations

impl Debug for ITunesItemExtension
[src]

Formats the value using the given formatter.

impl Default for ITunesItemExtension
[src]

Returns the "default value" for a type. Read more

impl Clone for ITunesItemExtension
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ITunesItemExtension
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.