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

pub struct ITunesChannelExtension {
    pub author: Option<String>,
    pub block: Option<String>,
    pub categories: Option<Vec<ITunesCategory>>,
    pub image: Option<String>,
    pub explicit: Option<String>,
    pub complete: Option<String>,
    pub new_feed_url: Option<String>,
    pub owner: Option<ITunesOwner>,
    pub subtitle: Option<String>,
    pub summary: Option<String>,
    pub keywords: Option<String>,
}

An iTunes channel element extension.

Fields

The author of the podcast.

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

The iTunes categories the podcast belongs to.

The artwork for the podcast.

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

Specifies whether the podcast is complete and no new episodes will be posted. A value of Yes indicates that the podcast is complete.

The new URL where the podcast is located.

The contact information for the owner of the podcast.

A description of the podcast.

A summary of the podcast.

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

Methods

impl ITunesChannelExtension
[src]

Creates an ITunesChannelExtension using the specified hashmap.

Trait Implementations

impl PartialEq for ITunesChannelExtension
[src]

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

This method tests for !=.

impl Clone for ITunesChannelExtension
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ITunesChannelExtension
[src]

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

impl Debug for ITunesChannelExtension
[src]

Formats the value using the given formatter.