[][src]Struct letterboxd::FilmStatistics

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

Fields

film: FilmIdentifier

The film for which statistics were requested.

counts: FilmStatisticsCounts

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

rating: Option<f32>

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.

ratings_histogram: Vec<RatingsHistogramBar>

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

Trait Implementations

impl Clone for FilmStatistics[src]

impl Debug for FilmStatistics[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,