Struct imdb_index::AKA[][src]

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

The IMDb identifier that these AKA records describe.

The order in which an AKA record should be preferred.

The alternate name.

A geographic region in which this alternate name applies.

The language of this alternate name.

A comma separated list of types for this name.

A comma separated list of attributes for this name.

A flag indicating whether this corresponds to the original title or not.

Trait Implementations

impl Clone for AKA
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AKA
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for AKA

impl Sync for AKA