Struct letterboxd::Film [] [src]

pub struct Film {
    pub id: String,
    pub name: String,
    pub original_name: Option<String>,
    pub alternative_names: Vec<String>,
    pub release_year: u16,
    pub tagline: String,
    pub description: String,
    pub run_time: u16,
    pub poster: Image,
    pub backdrop: Image,
    pub backdrop_focal_point: f32,
    pub trailer: FilmTrailer,
    pub genres: Vec<Genre>,
    pub contributions: Vec<FilmContributions>,
    pub links: Vec<Link>,
}

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 tagline for the film.

A synopsis of the film.

The film’s duration (in minutes).

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

The film’s backdrop image (16:9 ratio in multiple sizes).

The backdrop’s vertical focal point, expressed as a proportion of the image’s height, using values between 0.0 and 1.0. Use when cropping the image into a shorter space, such as in the page for a film on the Letterboxd site.

The film’s trailer.

The film’s genres.

The film’s contributors (director, cast and crew) grouped by discipline.

A list of relevant URLs to this entity, on Letterboxd and external sites.

Trait Implementations

impl Debug for Film
[src]

[src]

Formats the value using the given formatter.

impl Clone for Film
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more