[][src]Struct trakt::models::season::FullSeason

pub struct FullSeason {
    pub number: u32,
    pub ids: Ids,
    pub rating: f64,
    pub votes: u32,
    pub episode_count: u32,
    pub aired_episodes: u32,
    pub title: String,
    pub overview: Option<String>,
    pub first_aired: DateTime<Utc>,
    pub network: String,
}

A season with full extended info

Fields

number: u32ids: Idsrating: f64votes: u32episode_count: u32aired_episodes: u32title: Stringoverview: Option<String>first_aired: DateTime<Utc>network: String

Trait Implementations

impl WithNone for FullSeason[src]

type None = Season

impl Debug for FullSeason[src]

impl Serialize for FullSeason[src]

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

Auto Trait Implementations

impl Send for FullSeason

impl Sync for FullSeason

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T