pub struct EpisodeShort {
pub air_date: Option<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: Option<NaiveDate>§episode_number: u64§id: u64§name: String§overview: Option<String>§production_code: String§season_number: u64§still_path: Option<String>§vote_average: f64§vote_count: u64Trait Implementations§
Source§impl Clone for EpisodeShort
impl Clone for EpisodeShort
Source§fn clone(&self) -> EpisodeShort
fn clone(&self) -> EpisodeShort
Returns a duplicate 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 EpisodeShort
impl Debug for EpisodeShort
Source§impl<'de> Deserialize<'de> for EpisodeShort
impl<'de> Deserialize<'de> for EpisodeShort
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 for EpisodeShort
impl PartialEq for EpisodeShort
Source§impl Serialize for EpisodeShort
impl Serialize for EpisodeShort
impl StructuralPartialEq for EpisodeShort
Auto Trait Implementations§
impl Freeze for EpisodeShort
impl RefUnwindSafe for EpisodeShort
impl Send for EpisodeShort
impl Sync for EpisodeShort
impl Unpin for EpisodeShort
impl UnwindSafe for EpisodeShort
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more