[][src]Struct imdb_index::AKA

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>,
}

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: String

The IMDb identifier that these AKA records describe.

order: i32

The order in which an AKA record should be preferred.

title: String

The alternate name.

region: String

A geographic region in which this alternate name applies.

language: String

The language of this alternate name.

types: String

A comma separated list of types for this name.

attributes: String

A 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

impl Clone for AKA[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AKA[src]

impl<'de> Deserialize<'de> for AKA[src]

Auto Trait Implementations

impl Send for AKA

impl Unpin for AKA

impl Sync for AKA

impl UnwindSafe for AKA

impl RefUnwindSafe for AKA

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]