Struct kitsu::model::MangaAttributes [] [src]

pub struct MangaAttributes {
    pub abbreviated_titles: Option<Vec<String>>,
    pub average_rating: Option<String>,
    pub canonical_title: String,
    pub chapter_count: Option<u64>,
    pub cover_image: Option<CoverImage>,
    pub cover_image_top_offset: i16,
    pub end_date: Option<String>,
    pub kind: MangaType,
    pub popularity_rank: Option<u32>,
    pub poster_image: Image,
    pub rating_frequencies: RatingFrequencies,
    pub rating_rank: Option<u32>,
    pub serialization: Option<String>,
    pub slug: String,
    pub start_date: Option<String>,
    pub status: Option<Status>,
    pub synopsis: String,
    pub titles: MangaTitles,
    pub volume_count: Option<u64>,
    pub youtube_video_id: Option<String>,
}

Information about a Manga.

Fields

Shortened nicknames for the manga.

The average of all user ratings for the manga.

Examples

4.34926964198231

Canonical title for the manga.

Examples

Horimiya

The number of chapters released.

The URL template for the cover.

Examples

https://static.hummingbird.me/manga/22352/cover/$1.png

The cover's offset from the top.

This has the possibility of being negative.

Examples

60

Date the manga finished.

Examples

2013-09-28

Show format of the manga.

Examples

MangaType::Novel

The rank based on the popularityof the manga.

Examples

10

The URL template for the poster.

Examples

https://static.hummingbird.me/manga/22352/poster/$1.png

How many times each rating has been given to the manga.

The rank of the manga based on its overall rating.

Examples

13

Name of media of serialization.

Unique slug used for page URLs.

Examples

horimiya

Date the manga was serialized.

Examples

2013-04-07

The status of the manga

Examples

Status::Current, Status::Finished.

Synopsis of the manga.

Examples

Hori may seem like a normal teenage girl, but she's a completely...

The titles of the manga.

The number of volumes released for the manga.

The id of the related YouTube video.

Methods

impl MangaAttributes
[src]

[src]

The current airing status of the manga.

Refer to AnimeAttributes::airing_status for more information.

[src]

Generates a URL to the Kitsu page for the manga.

[src]

Generates a formatted URL to the youtube video.

Trait Implementations

impl Clone for MangaAttributes
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MangaAttributes
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations