pub struct ITunesChannelExtensionBuilder { /* private fields */ }
Expand description

Implementations§

source§

impl ITunesChannelExtensionBuilder

source

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

The author of the podcast.

source

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

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.

source

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

The iTunes categories the podcast belongs to.

source

pub fn category<VALUE>(&mut self, item: VALUE) -> &mut Self
where Vec<ITunesCategory>: Default + Extend<VALUE>,

The iTunes categories the podcast belongs to.

source

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

The artwork for the podcast.

source

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

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.

source

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

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

source

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

The new URL where the podcast is located.

source

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

The contact information for the owner of the podcast.

source

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

A description of the podcast.

source

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

A summary of the podcast.

source

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

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

source

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

The type of the podcast. Usually serial or episodic.

source§

impl ITunesChannelExtensionBuilder

source

pub fn build(&self) -> ITunesChannelExtension

Builds a new ITunesChannelExtension.

Trait Implementations§

source§

impl Clone for ITunesChannelExtensionBuilder

source§

fn clone(&self) -> ITunesChannelExtensionBuilder

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 Default for ITunesChannelExtensionBuilder

source§

fn default() -> Self

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

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.