[][src]Struct letterboxd::ListSummary

pub struct ListSummary {
    pub id: String,
    pub name: String,
    pub film_count: usize,
    pub published: bool,
    pub ranked: bool,
    pub description_lbml: Option<String>,
    pub description_truncated: Option<bool>,
    pub owner: MemberSummary,
    pub cloned_from: Option<ListIdentifier>,
    pub preview_entries: Vec<ListEntrySummary>,
    pub description: Option<String>,
}

Fields

id: String

The LID of the list.

name: String

The name of the list.

film_count: usize

The number of films in the list.

published: bool

Will be true if the owner has elected to publish the list for other members to see.

ranked: bool

Will be true if the owner has elected to make this a ranked list.

description_lbml: Option<String>

The list description in LBML. May contain the following HTML tags: <br> <strong> <em> <b> <i> <a href=""> <blockquote>. The text is a preview extract, and may be truncated if it’s too long.

description_truncated: Option<bool>

Will be true if the list description was truncated because it’s very long.

owner: MemberSummary

The member who owns the list.

cloned_from: Option<ListIdentifier>

The list this was cloned from, if applicable.

preview_entries: Vec<ListEntrySummary>

The first 12 entries in the list. To fetch more than 12 entries, and to fetch the entry notes, use the /list/{id}/entries endpoint.

description: Option<String>

The list description formatted as HTML. The text is a preview extract, and may be truncated if it’s too long.

Trait Implementations

impl Clone for ListSummary[src]

impl Debug for ListSummary[src]

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