[][src]Struct mygpoclient::subscription::Podcast

pub struct Podcast {
    pub url: Url,
    pub title: String,
    pub author: Option<String>,
    pub description: String,
    pub subscribers: u16,
    pub subscribers_last_week: u16,
    pub logo_url: Option<Url>,
    pub scaled_logo_url: Option<Url>,
    pub website: Option<Url>,
    pub mygpo_link: Url,
}

Podcast

Fields

url: Url

feed URL

title: String

title of podcast

author: Option<String>

author of podcast

description: String

description of podcast

subscribers: u16

number of subscribers on service

subscribers_last_week: u16

number of subscribers on service one week before

logo_url: Option<Url>

URL to logo of podcast

scaled_logo_url: Option<Url>

URL to a scaled logo of podcast

website: Option<Url>

website of podcast

mygpo_link: Url

service-internal feed URL

Trait Implementations

impl Clone for Podcast[src]

impl Debug for Podcast[src]

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

impl Display for Podcast[src]

impl Eq for Podcast[src]

impl Hash for Podcast[src]

impl Ord for Podcast[src]

impl PartialEq<Podcast> for Podcast[src]

impl PartialOrd<Podcast> for Podcast[src]

impl Serialize for Podcast[src]

impl StructuralEq for Podcast[src]

Auto Trait Implementations

impl RefUnwindSafe for Podcast

impl Send for Podcast

impl Sync for Podcast

impl Unpin for Podcast

impl UnwindSafe for Podcast

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.