pub struct ProductionCompany {
pub name: String,
pub id: i64,
pub logo_path: Option<String>,
pub origin_country: String,
}Expand description
A Production company for a movie or TV show
Fields§
§name: StringThe name of this production company
id: i64The id for this production company
logo_path: Option<String>The path to the logo for this company
origin_country: StringThe country of origin for this production company
Trait Implementations§
Source§impl Debug for ProductionCompany
impl Debug for ProductionCompany
Source§impl<'de> Deserialize<'de> for ProductionCompany
impl<'de> Deserialize<'de> for ProductionCompany
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
Auto Trait Implementations§
impl Freeze for ProductionCompany
impl RefUnwindSafe for ProductionCompany
impl Send for ProductionCompany
impl Sync for ProductionCompany
impl Unpin for ProductionCompany
impl UnwindSafe for ProductionCompany
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