[][src]Struct letterboxd::Review

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

lbml: String

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

contains_spoilers: bool

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

can_share_on: Option<ThirdPartyService>

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

shared_on: Option<ThirdPartyService>

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

when_reviewed: String

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"

text: String

The review text formatted as HTML.

Trait Implementations

impl Clone for Review[src]

impl Debug for Review[src]

impl<'de> Deserialize<'de> for Review[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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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>,