Struct tmdb_api::tvshow::SeasonBase
source · [−]pub struct SeasonBase {
pub air_date: Option<NaiveDate>,
pub id: u64,
pub name: String,
pub overview: Option<String>,
pub poster_path: Option<String>,
pub season_number: u64,
}Fields
air_date: Option<NaiveDate>id: u64name: Stringoverview: Option<String>poster_path: Option<String>season_number: u64Trait Implementations
sourceimpl Clone for SeasonBase
impl Clone for SeasonBase
sourcefn clone(&self) -> SeasonBase
fn clone(&self) -> SeasonBase
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SeasonBase
impl Debug for SeasonBase
sourceimpl<'de> Deserialize<'de> for SeasonBase
impl<'de> Deserialize<'de> for SeasonBase
sourcefn 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
sourceimpl PartialEq<SeasonBase> for SeasonBase
impl PartialEq<SeasonBase> for SeasonBase
sourcefn eq(&self, other: &SeasonBase) -> bool
fn eq(&self, other: &SeasonBase) -> bool
sourceimpl Serialize for SeasonBase
impl Serialize for SeasonBase
impl StructuralPartialEq for SeasonBase
Auto Trait Implementations
impl RefUnwindSafe for SeasonBase
impl Send for SeasonBase
impl Sync for SeasonBase
impl Unpin for SeasonBase
impl UnwindSafe for SeasonBase
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more