[][src]Struct letterboxd::FilmSummary

pub struct FilmSummary {
    pub id: String,
    pub name: String,
    pub original_name: Option<String>,
    pub alternative_names: Option<Vec<String>>,
    pub release_year: Option<u16>,
    pub directors: Vec<ContributorSummary>,
    pub poster: Option<Image>,
    pub relationships: Vec<MemberFilmRelationship>,
}

Fields

id: String

The LID of the film.

name: String

The title of the film.

original_name: Option<String>

The original title of the film, if it was first released with a non-English title.

alternative_names: Option<Vec<String>>

The other names by which the film is known (including alternative titles and/or foreign translations).

release_year: Option<u16>

The year in which the film was first released.

directors: Vec<ContributorSummary>

The list of directors for the film.

poster: Option<Image>

The film’s poster image (2:3 ratio in multiple sizes).

relationships: Vec<MemberFilmRelationship>

Relationships to the film for the authenticated member (if any) and other members where relevant.

Trait Implementations

impl Clone for FilmSummary[src]

impl Debug for FilmSummary[src]

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