[][src]Struct roosterteeth_rs::structs::series::Attributes

pub struct Attributes {
    pub title: String,
    pub slug: String,
    pub genres: Vec<String>,
    pub is_sponsors_only: bool,
    pub updated_at: DateTime<FixedOffset>,
    pub published_at: DateTime<FixedOffset>,
    pub last_episode_golive_at: DateTime<FixedOffset>,
    pub summary: String,
    pub category: String,
    pub channel_id: String,
    pub channel_slug: String,
    pub season_count: u16,
    pub episode_count: u32,
    pub season_order: String,
    pub episode_order: String,
    pub blacklisted_countries: Vec<String>,
}

Fields

title: Stringslug: Stringgenres: Vec<String>is_sponsors_only: boolupdated_at: DateTime<FixedOffset>published_at: DateTime<FixedOffset>last_episode_golive_at: DateTime<FixedOffset>summary: Stringcategory: Stringchannel_id: Stringchannel_slug: Stringseason_count: u16episode_count: u32season_order: Stringepisode_order: Stringblacklisted_countries: Vec<String>

Trait Implementations

impl Debug for Attributes[src]

impl<'de> Deserialize<'de> for Attributes[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<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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.