pub struct ProductionCountry {
pub iso_3166_1: String,
pub name: String,
}Expand description
A country where production of a movie or TV show took place at
Fields§
§iso_3166_1: StringThe ISO 3166-1 code for the name of this country
name: StringThe name of this country
Trait Implementations§
Source§impl Debug for ProductionCountry
impl Debug for ProductionCountry
Source§impl<'de> Deserialize<'de> for ProductionCountry
impl<'de> Deserialize<'de> for ProductionCountry
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 ProductionCountry
impl RefUnwindSafe for ProductionCountry
impl Send for ProductionCountry
impl Sync for ProductionCountry
impl Unpin for ProductionCountry
impl UnwindSafe for ProductionCountry
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