pub struct TVShowBase {Show 13 fields
pub id: u64,
pub name: String,
pub original_name: String,
pub original_language: String,
pub origin_country: Vec<String>,
pub overview: Option<String>,
pub first_air_date: Option<NaiveDate>,
pub poster_path: Option<String>,
pub backdrop_path: Option<String>,
pub popularity: f64,
pub vote_count: u64,
pub vote_average: f64,
pub adult: bool,
}Fields§
§id: u64§name: String§original_name: String§original_language: String§origin_country: Vec<String>§overview: Option<String>§first_air_date: Option<NaiveDate>§poster_path: Option<String>§backdrop_path: Option<String>§popularity: f64§vote_count: u64§vote_average: f64§adult: boolTrait Implementations§
Source§impl Clone for TVShowBase
impl Clone for TVShowBase
Source§fn clone(&self) -> TVShowBase
fn clone(&self) -> TVShowBase
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 TVShowBase
impl Debug for TVShowBase
Source§impl<'de> Deserialize<'de> for TVShowBase
impl<'de> Deserialize<'de> for TVShowBase
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 TVShowBase
impl PartialEq for TVShowBase
Source§impl Serialize for TVShowBase
impl Serialize for TVShowBase
impl StructuralPartialEq for TVShowBase
Auto Trait Implementations§
impl Freeze for TVShowBase
impl RefUnwindSafe for TVShowBase
impl Send for TVShowBase
impl Sync for TVShowBase
impl Unpin for TVShowBase
impl UnwindSafe for TVShowBase
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