Struct tvdb::SeriesSearchResult [] [src]

pub struct SeriesSearchResult {
    pub seriesid: u32,
    pub seriesname: String,
    pub language: String,
    pub overview: Option<String>,
    pub banner: Option<String>,
    pub imdb_id: Option<String>,
    pub first_aired: Option<Date>,
    pub network: Option<String>,
    pub zap2it_id: Option<String>,
}

Series info as returned from TheTVDB's series search method: http://www.thetvdb.com/wiki/index.php?title=API:GetSeries

Fields

seriesid: u32

TheTVDB's series ID ('seriesid' is preferred over 'id' from XML response)

seriesname: String

Series name in the language indicated by language

language: String

Language this episode information is in

overview: Option<String>

Description of series

banner: Option<String>

Relative path to the highest rated banner

imdb_id: Option<String>

IMDB ID for this series

first_aired: Option<Date>

First aired date

network: Option<String>

Network this series aired on

zap2it_id: Option<String>

zap2it ID for this series

Trait Implementations

impl Clone for SeriesSearchResult
[src]

fn clone(&self) -> SeriesSearchResult

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for SeriesSearchResult
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.