Struct letterboxd::Review [] [src]

pub struct Review {
    pub lbml: String,
    pub contains_spoilers: bool,
    pub can_share_on: Option<ThirdPartyService>,
    pub shared_on: Option<ThirdPartyService>,
    pub when_reviewed: String,
    pub text: String,
}

Fields

The review text in LBML. May contain the following HTML tags: <br> <strong> <em> <b> <i> <a href=""> <blockquote>.

Will be true if the member has indicated that the review field contains plot spoilers for the film.

The third-party service or services to which this review can be shared. Only included if the authenticated member is the review’s owner.

The third-party service or services to which this review has been shared. Only included if the authenticated member is the review’s owner.

The timestamp when this log entry’s review was first published, in ISO 8601 format with UTC timezone, i.e. YYYY-MM-DDThh:mm:ssZ "1997-08-29T07:14:00Z"

The review text formatted as HTML.

Trait Implementations

impl Debug for Review
[src]

[src]

Formats the value using the given formatter.

impl Clone for Review
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more