Struct gitlab::types::Member [] [src]

pub struct Member {
    pub username: String,
    pub name: String,
    pub id: UserId,
    pub state: UserState,
    pub avatar_url: String,
    pub web_url: String,
    pub access_level: u64,
    pub expires_at: Option<DateTime<UTC>>,
}

A member with extra permissions on a project.

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.

The access level of the user.

When the membership expires.

Trait Implementations

impl Debug for Member
[src]

Formats the value using the given formatter.

impl Clone for Member
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more