Struct mal::MangaInfo [] [src]

pub struct MangaInfo {
    pub id: u32,
    pub title: String,
    pub synonyms: Vec<String>,
    pub chapters: u32,
    pub volumes: u32,
    pub start_date: Option<NaiveDate>,
    pub end_date: Option<NaiveDate>,
    pub image_url: String,
}

Represents basic information of a manga series on MyAnimeList.

Fields

The ID of the manga series.

The title of the anime series.

The alternative titles for the series.

The number of chapters in the manga series.

The number of volumes in the manga series.

The date the series started airing.

The date the series finished airing.

The URL to the cover image of the series.

Trait Implementations

impl Debug for MangaInfo
[src]

[src]

Formats the value using the given formatter.

impl Clone for MangaInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl SeriesInfo for MangaInfo
[src]

impl PartialEq for MangaInfo
[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 !=.