Struct gitlab::types::UserBasic [] [src]

pub struct UserBasic {
    pub username: String,
    pub name: String,
    pub id: UserId,
    pub state: UserState,
    pub avatar_url: String,
    pub web_url: String,
}

Basic user information.

Fields

The username.

The display name.

The user's ID.

The state of the user account.

The URL of the user's avatar.

The URL of the user's profile page.

Trait Implementations

impl Debug for UserBasic
[src]

Formats the value using the given formatter.

impl Clone for UserBasic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<User> for UserBasic
[src]

Performs the conversion.

impl From<UserPublic> for UserBasic
[src]

Performs the conversion.

impl From<Member> for UserBasic
[src]

Performs the conversion.

impl From<AccessRequester> for UserBasic
[src]

Performs the conversion.