Struct letterboxd::List [] [src]

pub struct List {
    pub id: String,
    pub name: String,
    pub film_count: usize,
    pub published: bool,
    pub ranked: bool,
    pub has_entries_with_notes: bool,
    pub description_lbml: Option<String>,
    pub tags2: Vec<Tag>,
    pub can_share_on: Option<Vec<ThirdPartyService>>,
    pub shared_on: Option<Vec<ThirdPartyService>>,
    pub when_created: String,
    pub when_published: Option<String>,
    pub owner: MemberSummary,
    pub cloned_from: Option<ListIdentifier>,
    pub preview_entries: Vec<ListEntrySummary>,
    pub links: Vec<Link>,
    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.

Will be true if the owner has added notes to any entries.

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

The tags for the list.

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

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

ISO 8601 format with UTC timezone, i.e. YYYY-MM-DDThh:mm:ssZ "1997-08-29T07:14:00Z"

ISO 8601 format with UTC timezone, i.e. YYYY-MM-DDThh:mm:ssZ "1997-08-29T07:14:00Z"

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.

A list of relevant URLs to this entity, on Letterboxd and external sites.

The list description formatted as HTML.

Trait Implementations

impl Debug for List
[src]

[src]

Formats the value using the given formatter.

impl Clone for List
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more