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>,
}Expand description
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.
Implementations§
Trait Implementations§
Source§impl Clone for ITunesChannelExtension
impl Clone for ITunesChannelExtension
Source§fn clone(&self) -> ITunesChannelExtension
fn clone(&self) -> ITunesChannelExtension
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more