Struct letterboxd::FilmRelationship [] [src]

pub struct FilmRelationship {
    pub watched: bool,
    pub liked: bool,
    pub favorited: bool,
    pub in_watchlist: bool,
    pub rating: Option<f32>,
    pub reviews: Vec<String>,
    pub diary_entries: Vec<String>,
}

Fields

Will be true if the member has indicated they’ve seen the film (via the ‘eye’ icon) or has a log entry for the film.

Will be true if the member likes the film (via the ‘heart’ icon).

Will be true if the member listed the film as one of their four favorites.

Will be true if the film is in the member’s watchlist.

The member’s rating for the film.

A list of LIDs for reviews the member has written for the film in the order they were added, with most recent reviews first.

A list of LIDs for log entries the member has added for the film in diary order, with most recent entries first.

Trait Implementations

impl Debug for FilmRelationship
[src]

[src]

Formats the value using the given formatter.

impl Clone for FilmRelationship
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more