Struct tmdb_api::tvshow::EpisodeShort
source · [−]pub struct EpisodeShort {
pub air_date: NaiveDate,
pub episode_number: u64,
pub id: u64,
pub name: String,
pub overview: Option<String>,
pub production_code: String,
pub season_number: u64,
pub still_path: Option<String>,
pub vote_average: f64,
pub vote_count: u64,
}Fields
air_date: NaiveDateepisode_number: u64id: u64name: Stringoverview: Option<String>production_code: Stringseason_number: u64still_path: Option<String>vote_average: f64vote_count: u64Trait Implementations
sourceimpl Clone for EpisodeShort
impl Clone for EpisodeShort
sourcefn clone(&self) -> EpisodeShort
fn clone(&self) -> EpisodeShort
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 EpisodeShort
impl Debug for EpisodeShort
sourceimpl<'de> Deserialize<'de> for EpisodeShort
impl<'de> Deserialize<'de> for EpisodeShort
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<EpisodeShort> for EpisodeShort
impl PartialEq<EpisodeShort> for EpisodeShort
sourcefn eq(&self, other: &EpisodeShort) -> bool
fn eq(&self, other: &EpisodeShort) -> bool
sourceimpl Serialize for EpisodeShort
impl Serialize for EpisodeShort
impl StructuralPartialEq for EpisodeShort
Auto Trait Implementations
impl RefUnwindSafe for EpisodeShort
impl Send for EpisodeShort
impl Sync for EpisodeShort
impl Unpin for EpisodeShort
impl UnwindSafe for EpisodeShort
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