Struct letterboxd::FilmSummary [] [src]

pub struct FilmSummary {
    pub id: String,
    pub name: String,
    pub original_name: Option<String>,
    pub alternative_names: Option<Vec<String>>,
    pub release_year: Option<u16>,
    pub directors: Vec<ContributorSummary>,
    pub poster: Option<Image>,
    pub relationships: Vec<MemberFilmRelationship>,
}

Fields

The LID of the film.

The title of the film.

The original title of the film, if it was first released with a non-English title.

The other names by which the film is known (including alternative titles and/or foreign translations).

The year in which the film was first released.

The list of directors for the film.

The film’s poster image (2:3 ratio in multiple sizes).

Relationships to the film for the authenticated member (if any) and other members where relevant.

Trait Implementations

impl Debug for FilmSummary
[src]

[src]

Formats the value using the given formatter.

impl Clone for FilmSummary
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more