Struct mal::SeriesInfo [] [src]

pub struct SeriesInfo {
    pub id: u32,
    pub title: String,
    pub episodes: u32,
    pub start_date: Option<NaiveDate>,
    pub end_date: Option<NaiveDate>,
}

Represents basic information of an anime series on MyAnimeList.

Fields

The ID of the anime series.

The title of the anime series.

The number of episodes in the anime series.

The date the series started airing.

The date the series finished airing.

Trait Implementations

impl Debug for SeriesInfo
[src]

[src]

Formats the value using the given formatter.

impl Clone for SeriesInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for SeriesInfo
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.