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

pub struct ITunesChannelExtensionBuilder { /* fields omitted */ }

Implementations

impl ITunesChannelExtensionBuilder[src]

pub fn author<VALUE: Into<Option<String>>>(&mut self, value: VALUE) -> &mut Self[src]

The author of the podcast.

pub fn block<VALUE: Into<Option<String>>>(&mut self, value: VALUE) -> &mut Self[src]

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.

pub fn categories<VALUE: Into<Vec<ITunesCategory>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The iTunes categories the podcast belongs to.

pub fn image<VALUE: Into<Option<String>>>(&mut self, value: VALUE) -> &mut Self[src]

The artwork for the podcast.

pub fn explicit<VALUE: Into<Option<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

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.

pub fn complete<VALUE: Into<Option<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

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

pub fn new_feed_url<VALUE: Into<Option<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The new URL where the podcast is located.

pub fn owner<VALUE: Into<Option<ITunesOwner>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The contact information for the owner of the podcast.

pub fn subtitle<VALUE: Into<Option<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

A description of the podcast.

pub fn summary<VALUE: Into<Option<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

A summary of the podcast.

pub fn keywords<VALUE: Into<Option<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

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

pub fn type<VALUE: Into<Option<String>>>(&mut self, value: VALUE) -> &mut Self[src]

The type of the podcast. Usually serial or episodic.

pub fn build(&self) -> Result<ITunesChannelExtension, String>[src]

Builds a new ITunesChannelExtension.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for ITunesChannelExtensionBuilder[src]

impl Default for ITunesChannelExtensionBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.