pub struct AKA {
pub id: String,
pub order: i32,
pub title: String,
pub region: String,
pub language: String,
pub types: String,
pub attributes: String,
pub is_original_title: Option<bool>,
}Expand description
A single alternate name.
Every title has one or more names, and zero or more alternate names. To represent multiple names, AKA or “also known as” records are provided. There may be many AKA records for a single title.
Fields§
§id: StringThe IMDb identifier that these AKA records describe.
order: i32The order in which an AKA record should be preferred.
title: StringThe alternate name.
region: StringA geographic region in which this alternate name applies.
language: StringThe language of this alternate name.
types: StringA comma separated list of types for this name.
attributes: StringA comma separated list of attributes for this name.
is_original_title: Option<bool>A flag indicating whether this corresponds to the original title or not.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AKA
impl<'de> Deserialize<'de> for AKA
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 AKA
impl RefUnwindSafe for AKA
impl Send for AKA
impl Sync for AKA
impl Unpin for AKA
impl UnwindSafe for AKA
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