pub struct ITunesChannelExtension {
    pub author: Option<String>,
    pub block: Option<String>,
    pub categories: 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>,
    pub type: Option<String>,
}
Expand description

An iTunes channel element extension.

Fields§

§author: Option<String>

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: 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 indicates 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.

§type: Option<String>

The type of the podcast. Usually serial or episodic.

Implementations§

source§

impl ITunesChannelExtension

source

pub fn author(&self) -> Option<&str>

Return the author of this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_author("John Doe".to_string());
assert_eq!(extension.author(), Some("John Doe"));
source

pub fn set_author<V>(&mut self, author: V)
where V: Into<Option<String>>,

Set the author of this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_author("John Doe".to_string());
source

pub fn block(&self) -> Option<&str>

Return whether the podcast should be blocked 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.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_block("Yes".to_string());
assert_eq!(extension.block(), Some("Yes"));
source

pub fn set_block<V>(&mut self, block: V)
where V: Into<Option<String>>,

Set whether the podcast should be blocked 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.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_block("Yes".to_string());
source

pub fn categories(&self) -> &[ITunesCategory]

Return the iTunes categories that the podcast belongs to.

§Examples
use rss::extension::itunes::{ITunesCategory, ITunesChannelExtension};

let mut extension = ITunesChannelExtension::default();
extension.set_categories(vec![ITunesCategory::default()]);
assert_eq!(extension.categories().len(), 1);
source

pub fn categories_mut(&mut self) -> &mut [ITunesCategory]

Return a mutable slice of the iTunes categories that the podcast belongs to.

source

pub fn set_categories<V>(&mut self, categories: V)
where V: Into<Vec<ITunesCategory>>,

Set the iTunes categories that the podcast belongs to.

§Examples
use rss::extension::itunes::{ITunesCategory, ITunesChannelExtension};

let mut extension = ITunesChannelExtension::default();
extension.set_categories(vec![ITunesCategory::default()]);
source

pub fn image(&self) -> Option<&str>

Return the artwork URL for the podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_image("http://example.com/artwork.png".to_string());
assert_eq!(extension.image(), Some("http://example.com/artwork.png"));
source

pub fn set_image<V>(&mut self, image: V)
where V: Into<Option<String>>,

Set the artwork URL for the podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_image("http://example.com/artwork.png".to_string());
source

pub fn explicit(&self) -> Option<&str>

Return 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 indicates that none of the episodes contain explicit content.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_explicit("Yes".to_string());
assert_eq!(extension.explicit(), Some("Yes"));
source

pub fn set_explicit<V>(&mut self, explicit: V)
where V: Into<Option<String>>,

Set 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 indicates that none of the episodes contain explicit content.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_explicit("Yes".to_string());
source

pub fn complete(&self) -> Option<&str>

Return whether the podcast is complete and no new episodes will be posted.

A value of Yes indicates that the podcast is complete.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_complete("Yes".to_string());
assert_eq!(extension.complete(), Some("Yes"));
source

pub fn set_complete<V>(&mut self, complete: V)
where V: Into<Option<String>>,

Set whether the podcast is complete and no new episodes will be posted.

A value of Yes indicates that the podcast is complete.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_complete("Yes".to_string());
source

pub fn new_feed_url(&self) -> Option<&str>

Return the new feed URL for this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_new_feed_url("http://example.com/feed".to_string());
assert_eq!(extension.new_feed_url(), Some("http://example.com/feed"));
source

pub fn set_new_feed_url<V>(&mut self, new_feed_url: V)
where V: Into<Option<String>>,

Set the new feed URL for this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_new_feed_url("http://example.com/feed".to_string());
source

pub fn owner(&self) -> Option<&ITunesOwner>

Return the contact information for the owner of this podcast.

§Examples
use rss::extension::itunes::{ITunesChannelExtension, ITunesOwner};

let mut extension = ITunesChannelExtension::default();
extension.set_owner(ITunesOwner::default());
assert!(extension.owner().is_some());
source

pub fn set_owner<V>(&mut self, owner: V)
where V: Into<Option<ITunesOwner>>,

Set the contact information for the owner of this podcast.

§Examples
use rss::extension::itunes::{ITunesChannelExtension, ITunesOwner};

let mut extension = ITunesChannelExtension::default();
extension.set_owner(ITunesOwner::default());
source

pub fn subtitle(&self) -> Option<&str>

Return the description of this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_subtitle("A podcast".to_string());
assert_eq!(extension.subtitle(), Some("A podcast"));
source

pub fn set_subtitle<V>(&mut self, subtitle: V)
where V: Into<Option<String>>,

Set the description of this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_subtitle("A podcast".to_string());
source

pub fn summary(&self) -> Option<&str>

Return the summary for this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_summary("A podcast".to_string());
assert_eq!(extension.summary(), Some("A podcast"));
source

pub fn set_summary<V>(&mut self, summary: V)
where V: Into<Option<String>>,

Set the summary for this podcast.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_summary("A podcast about technology".to_string());
source

pub fn keywords(&self) -> Option<&str>

Return the keywords for this podcast.

A comma separated list of keywords.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_keywords("technology".to_string());
assert_eq!(extension.keywords(), Some("technology"));
source

pub fn set_keywords<V>(&mut self, keywords: V)
where V: Into<Option<String>>,

Set the keywords for this podcast.

A comma separated list of keywords.

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_keywords("technology".to_string());
source

pub fn type(&self) -> Option<&str>

Return the type of this podcast.

A string usually “serial” or “episodic”

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_type("episodic".to_string());
assert_eq!(extension.r#type(), Some("episodic"));
source

pub fn set_type<V>(&mut self, t: V)
where V: Into<Option<String>>,

Set the type of this podcast.

A string, usually “serial” or “episodic”

§Examples
use rss::extension::itunes::ITunesChannelExtension;

let mut extension = ITunesChannelExtension::default();
extension.set_type("serial".to_string());
source§

impl ITunesChannelExtension

source

pub fn from_map(map: BTreeMap<String, Vec<Extension>>) -> Self

Create an ITunesChannelExtension from a BTreeMap.

Trait Implementations§

source§

impl Clone for ITunesChannelExtension

source§

fn clone(&self) -> ITunesChannelExtension

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ITunesChannelExtension

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ITunesChannelExtension

source§

fn default() -> ITunesChannelExtension

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for ITunesChannelExtension

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for ITunesChannelExtension

source§

fn eq(&self, other: &ITunesChannelExtension) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for ITunesChannelExtension

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for ITunesChannelExtension

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,