[][src]Enum letterboxd::AbstractSearchItem

pub enum AbstractSearchItem {
    ContributorSearchItem {
        score: f32,
        contributor: Contributor,
    },
    FilmSearchItem {
        score: f32,
        film: FilmSummary,
    },
    ListSearchItem {
        score: f32,
        list: ListSummary,
    },
    MemberSearchItem {
        score: f32,
        member: MemberSummary,
    },
    ReviewSearchItem {
        score: f32,
        review: LogEntry,
    },
    TagSearchItem {
        score: f32,
        tag: String,
    },
}

Variants

ContributorSearchItem

Common fields: score A relevancy value that can be used to order results.

Fields of ContributorSearchItem

score: f32

A relevancy value that can be used to order results.

contributor: Contributor

Contributor Details of the contributor.

FilmSearchItem

Fields of FilmSearchItem

score: f32film: FilmSummary
ListSearchItem

Fields of ListSearchItem

score: f32list: ListSummary
MemberSearchItem

Fields of MemberSearchItem

score: f32member: MemberSummary
ReviewSearchItem

Fields of ReviewSearchItem

score: f32review: LogEntry

Details of the review.

TagSearchItem

Fields of TagSearchItem

score: f32tag: String

Trait Implementations

impl Clone for AbstractSearchItem[src]

impl Debug for AbstractSearchItem[src]

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