[][src]Struct mygpoclient::directory::Episode

pub struct Episode {
    pub title: String,
    pub url: Url,
    pub podcast_title: String,
    pub podcast_url: Url,
    pub description: String,
    pub website: Option<Url>,
    pub mygpo_link: Url,
    pub released: NaiveDateTime,
}

Podcast episode

Fields

title: String

title

url: Url

media url

podcast_title: String

podcast title

podcast_url: Url

podcast feed url

description: String

description

website: Option<Url>

website

mygpo_link: Url

gpodder internal link

released: NaiveDateTime

release date

Trait Implementations

impl Clone for Episode[src]

impl Debug for Episode[src]

impl<'de> Deserialize<'de> for Episode[src]

impl Display for Episode[src]

impl Eq for Episode[src]

impl Hash for Episode[src]

impl Ord for Episode[src]

impl PartialEq<Episode> for Episode[src]

impl PartialOrd<Episode> for Episode[src]

impl Serialize for Episode[src]

impl StructuralEq for Episode[src]

Auto Trait Implementations

impl RefUnwindSafe for Episode

impl Send for Episode

impl Sync for Episode

impl Unpin for Episode

impl UnwindSafe for Episode

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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> ToString for T where
    T: Display + ?Sized
[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.