Struct kitsu::model::CharacterAttributes [] [src]

pub struct CharacterAttributes {
    pub created_at: String,
    pub description: Option<String>,
    pub image: Option<CoverImage>,
    pub mal_id: i64,
    pub name: String,
    pub slug: String,
    pub updated_at: String,
}

Information about a Character.

Fields

When the entry was created.

A description of the character.

URLs to cover images.

The ID of the MAL entry.

The name of the character.

URL slug of the character.

When the entry was last updated.

Trait Implementations

impl Clone for CharacterAttributes
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CharacterAttributes
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations