Struct kitsu::model::User [] [src]

pub struct User {
    pub attributes: UserAttributes,
    pub id: String,
    pub kind: Type,
    pub links: HashMap<String, String>,
    pub relationships: UserRelationships,
}

Information about a user.

Fields

Information about the user.

The id of the user.

The type of item this is. Should always be Type::User.

Links related to the user.

List of the user's relationships.

Methods

impl User
[src]

[src]

Generates a URL to the Kitsu page for the user.

Trait Implementations

impl Clone for User
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for User
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for User

impl Sync for User