[][src]Struct letterboxd::LogEntry

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

id: String

The LID of the log entry.

name: String

A descriptive title for the log entry.

owner: MemberSummary

The member who created the log entry.

film: FilmSummary

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

diary_details: Option<DiaryDetails>

Details about the log entry, if present.

review: Option<Review>

Review details for the log entry, if present.

tags2: Vec<Tag>

The tags for the log entry.

when_created: String

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"

when_updated: String

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"

rating: f32

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

like: bool

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

commentable: bool

Will be true if the log entry can have comments.

links: Vec<Link>

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

Trait Implementations

impl Clone for LogEntry[src]

impl Debug for LogEntry[src]

impl<'de> Deserialize<'de> for LogEntry[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>,