Struct imdb_index::Rating[][src]

pub struct Rating {
    pub id: String,
    pub rating: f32,
    pub votes: u32,
}

A rating associated with a single title record.

Fields

The IMDb title identifier for this rating.

The rating, on a scale of 0 to 10, for this title.

The number of votes involved in this rating.

Trait Implementations

impl Clone for Rating
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Rating
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Rating

impl Sync for Rating