Struct imdb_index::Episode[][src]

pub struct Episode {
    pub id: String,
    pub tvshow_id: String,
    pub season: Option<u32>,
    pub episode: Option<u32>,
}

A single episode record.

An episode record is an entry that joins two title records together, and provides episode specific information, such as the season and episode number. The two title records joined correspond to the title record for the TV show and the title record for the episode.

Fields

The IMDb title identifier for this episode.

The IMDb title identifier for the parent TV show of this episode.

The season in which this episode is contained, if it exists.

The episode number of the season in which this episode is contained, if it exists.

Trait Implementations

impl Clone for Episode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Episode
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Episode

impl Sync for Episode