Struct dim_extern_api::ExternalSeason
source · pub struct ExternalSeason {
pub external_id: String,
pub title: Option<String>,
pub description: Option<String>,
pub posters: Vec<String>,
pub season_number: u64,
}
Fields§
§external_id: String
String representation of the id for this season object.
title: Option<String>
The title of this season.
description: Option<String>
The description of this season.
posters: Vec<String>
A list of posters for this season object.
season_number: u64
The season number for this season.
Trait Implementations§
source§impl Clone for ExternalSeason
impl Clone for ExternalSeason
source§fn clone(&self) -> ExternalSeason
fn clone(&self) -> ExternalSeason
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExternalSeason
impl Debug for ExternalSeason
source§impl Default for ExternalSeason
impl Default for ExternalSeason
source§fn default() -> ExternalSeason
fn default() -> ExternalSeason
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ExternalSeason
impl<'de> Deserialize<'de> for ExternalSeason
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ExternalSeason> for ExternalSeason
impl PartialEq<ExternalSeason> for ExternalSeason
source§fn eq(&self, other: &ExternalSeason) -> bool
fn eq(&self, other: &ExternalSeason) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ExternalSeason> for ExternalSeason
impl PartialOrd<ExternalSeason> for ExternalSeason
source§fn partial_cmp(&self, other: &ExternalSeason) -> Option<Ordering>
fn partial_cmp(&self, other: &ExternalSeason) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for ExternalSeason
impl Serialize for ExternalSeason
impl Eq for ExternalSeason
impl StructuralEq for ExternalSeason
impl StructuralPartialEq for ExternalSeason
Auto Trait Implementations§
impl RefUnwindSafe for ExternalSeason
impl Send for ExternalSeason
impl Sync for ExternalSeason
impl Unpin for ExternalSeason
impl UnwindSafe for ExternalSeason
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.