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.
block: Option<String>
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.
categories: Option<Vec<ITunesCategory>>
The iTunes categories the podcast belongs to.
image: Option<String>
The artwork for the podcast.
explicit: Option<String>
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.
complete: Option<String>
Specifies whether the podcast is complete and no new episodes will be posted. A value of
Yes indicates that the podcast is complete.
new_feed_url: Option<String>
The new URL where the podcast is located.
owner: Option<ITunesOwner>
The contact information for the owner of the podcast.
subtitle: Option<String>
A description of the podcast.
summary: Option<String>
A summary of the podcast.
keywords: Option<String>
Keywords for the podcast. The string contains a comma separated list of keywords.
Methods
impl ITunesChannelExtension[src]
fn from_map(map: HashMap<String, Vec<Extension>>) -> Self
Creates an ITunesChannelExtension using the specified hashmap.
Trait Implementations
impl PartialEq for ITunesChannelExtension[src]
fn eq(&self, __arg_0: &ITunesChannelExtension) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ITunesChannelExtension) -> bool
This method tests for !=.
impl Clone for ITunesChannelExtension[src]
fn clone(&self) -> ITunesChannelExtension
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
impl Default for ITunesChannelExtension[src]
fn default() -> ITunesChannelExtension
Returns the "default value" for a type. Read more