Struct imdb::models::Movie [] [src]

pub struct Movie {
    pub id: TitleID,
    pub title: String,
    pub year: u16,
    pub rating: f32,
    pub votes: u32,
}

Struct for Movie

Although IMDb represents all types of titles as one class, we will keep movies on their own.

Fields

ID

Title

Year of release

Rating on IMDb

Number of votes on IMDb

Trait Implementations

impl Debug for Movie
[src]

[src]

Formats the value using the given formatter.

impl Display for Movie
[src]

[src]

Formats the value using the given formatter. Read more