Struct letterboxd::LogEntry [] [src]

pub struct LogEntry {
    pub id: String,
    pub name: String,
    pub owner: MemberSummary,
    pub film: FilmSummary,
    pub diary_details: Option<DiaryDetails>,
    pub review: Option<Review>,
    pub tags2: Vec<Tag>,
    pub when_created: String,
    pub when_updated: String,
    pub rating: f32,
    pub like: bool,
    pub commentable: bool,
    pub links: Vec<Link>,
}

Fields

The LID of the log entry.

A descriptive title for the log entry.

The member who created the log entry.

The film being logged. Includes a MemberFilmRelationship for the member who created the log entry.

Details about the log entry, if present.

Review details for the log entry, if present.

The tags for the log entry.

The timestamp of when the log entry was created, in ISO 8601 format with UTC timezone, i.e. YYYY-MM-DDThh:mm:ssZ "1997-08-29T07:14:00Z"

The timestamp of when the log entry was last updated, in ISO 8601 format with UTC timezone, i.e. YYYY-MM-DDThh:mm:ssZ "1997-08-29T07:14:00Z"

The member’s rating for the film. Allowable values are between 0.5 and 5.0, with increments of 0.5.

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

Will be true if the log entry can have comments.

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

Trait Implementations

impl Debug for LogEntry
[src]

[src]

Formats the value using the given formatter.

impl Clone for LogEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more