Enum letterboxd::AbstractSearchItem [] [src]

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

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

Fields of ContributorSearchItem

A relevancy value that can be used to order results.

Contributor Details of the contributor.

Fields of FilmSearchItem

Fields of ListSearchItem

Fields of MemberSearchItem

Fields of ReviewSearchItem

Details of the review.

Fields of TagSearchItem

Trait Implementations

impl Clone for AbstractSearchItem
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AbstractSearchItem
[src]

[src]

Formats the value using the given formatter.