Struct letterboxd::FilmStatistics [] [src]

pub struct FilmStatistics {
    pub film: FilmIdentifier,
    pub counts: FilmStatisticsCounts,
    pub rating: Option<f32>,
    pub ratings_histogram: Vec<RatingsHistogramBar>,
}

Fields

The film for which statistics were requested.

The number of watches, ratings, likes, etc. for the film.

The weighted average rating of the film between 0.5 and 5.0. Will not be present if the film has not received sufficient ratings.

A summary of the number of ratings at each increment between 0.5 and 5.0.

Trait Implementations

impl Debug for FilmStatistics
[src]

[src]

Formats the value using the given formatter.

impl Clone for FilmStatistics
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more