[][src]Struct letterboxd::ListEntry

pub struct ListEntry {
    pub rank: Option<usize>,
    pub notes_lbml: Option<String>,
    pub contains_spoilers: Option<bool>,
    pub film: FilmSummary,
    pub notes: Option<String>,
}

Fields

rank: Option<usize>

The entry’s rank in the list, numbered from 1.

notes_lbml: Option<String>

The notes for the list entry in LBML. May contain the following HTML tags: <br> <strong> <em> <b> <i> <a href=""> <blockquote>.

contains_spoilers: Option<bool>

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

film: FilmSummary

The film for this entry. Includes a MemberFilmRelationship for the member who created the list.

notes: Option<String>

The notes for the list entry formatted as HTML.

Trait Implementations

impl Clone for ListEntry[src]

impl Debug for ListEntry[src]

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