[][src]Struct mygpoclient::suggestion::Suggestion

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

A podcast suggestion as returned by retrieve_suggested_podcasts

Fields

website: Url

website of podcast

mygpo_link: Url

service-internal feed link

description: String

description of podcast

subscribers: u16

number of subscribers on service

title: String

title of podcast

url: Url

feed URL

subscribers_last_week: u16

number of subscribers on service one week before

logo_url: Option<Url>

URL to logo of podcast

Trait Implementations

impl Clone for Suggestion[src]

impl Debug for Suggestion[src]

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

impl Display for Suggestion[src]

impl Eq for Suggestion[src]

impl Hash for Suggestion[src]

impl Ord for Suggestion[src]

impl PartialEq<Suggestion> for Suggestion[src]

impl PartialOrd<Suggestion> for Suggestion[src]

impl Serialize for Suggestion[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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,