Struct imdb_async::Show [−][src]
pub struct Show {
pub imdb_id: u64,
pub title: String,
pub is_adult: bool,
pub start_year: u16,
pub end_year: Option<u16>,
pub runtime_minutes: Option<u16>,
pub genres: Vec<String>,
pub episodes: Vec<Episode>,
}
Expand description
Represents a TV series from IMDB.
Fields
imdb_id: u64
title: String
is_adult: bool
start_year: u16
end_year: Option<u16>
runtime_minutes: Option<u16>
genres: Vec<String>
episodes: Vec<Episode>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Show
impl UnwindSafe for Show
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more