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>,
}Expand description
An iTunes item element extension.
Fields§
The author of the podcast episode.
block: Option<String>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.
image: Option<String>The artwork for the podcast episode.
duration: Option<String>The podcast episode duration in one of the following formats: HH:MM:SS, H:MM:SS, MM:SS, M:SS.
explicit: Option<String>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.
closed_captioned: Option<String>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.
order: Option<String>A value used to override the default sorting order for episodes.
subtitle: Option<String>A description of the podcast episode.
summary: Option<String>A summary of the podcast episode.
keywords: Option<String>Keywords for the podcast. The string contains a comma separated list of keywords.
Implementations§
Trait Implementations§
Source§impl Clone for ITunesItemExtension
impl Clone for ITunesItemExtension
Source§fn clone(&self) -> ITunesItemExtension
fn clone(&self) -> ITunesItemExtension
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more