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

pub struct ITunesCategory { /* fields omitted */ }

A category for an iTunes podcast.

Methods

impl ITunesCategory[src]

pub fn text(&self) -> &str[src]

Return the name of this category.

Examples

use rss::extension::itunes::ITunesCategory;

let mut category = ITunesCategory::default();
category.set_text("Technology");
assert_eq!(category.text(), "Technology")

pub fn set_text<V>(&mut self, text: V) where
    V: Into<String>, 
[src]

Set the name of this category.

Examples

use rss::extension::itunes::ITunesCategory;

let mut category = ITunesCategory::default();
category.set_text("Technology");

pub fn subcategory(&self) -> Option<&Box<ITunesCategory>>[src]

Return the subcategory for this category.

Examples

use rss::extension::itunes::ITunesCategory;

let mut category = ITunesCategory::default();
category.set_subcategory(Box::new(ITunesCategory::default()));
assert!(category.subcategory().is_some());

pub fn set_subcategory<V>(&mut self, subcategory: V) where
    V: Into<Option<Box<ITunesCategory>>>, 
[src]

Set the subcategory for this category.

Examples

use rss::extension::itunes::ITunesCategory;

let mut category = ITunesCategory::default();
category.set_subcategory(Box::new(ITunesCategory::default()));

Trait Implementations

impl PartialEq<ITunesCategory> for ITunesCategory[src]

impl Clone for ITunesCategory[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for ITunesCategory[src]

impl Debug for ITunesCategory[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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