Struct letterboxd::ListSummary [] [src]

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

The LID of the list.

The name of the list.

The number of films in the list.

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

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

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.

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

The member who owns the list.

The list this was cloned from, if applicable.

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.

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

Trait Implementations

impl Debug for ListSummary
[src]

[src]

Formats the value using the given formatter.

impl Clone for ListSummary
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more