Struct kitsu::model::UserRelationships [] [src]

pub struct UserRelationships {
    pub blocks: Relationship,
    pub favorites: Relationship,
    pub followers: Relationship,
    pub following: Relationship,
    pub library_entries: Relationship,
    pub linked_profiles: Option<Relationship>,
    pub media_follows: Option<Relationship>,
    pub pinned_post: Relationship,
    pub reviews: Relationship,
    pub user_roles: Relationship,
    pub waifu: Relationship,
}

Relationships for a User.

Fields

Links to users the user blocks.

Links to the user's favorite media entries.

Links to users following the user.

Links to users the user follows.

Links to the user's library entries.

Links to profiles linked to the user.

Links to the user's media.

Links to the user's pinned post on their profile.

Links to the user's reviews.

Links to the user's roles.

Links to the user's waifu or husbando.

Trait Implementations

impl Clone for UserRelationships
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UserRelationships
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations