Struct gitlab::types::AccessRequester
[−]
[src]
pub struct AccessRequester {
pub username: String,
pub name: String,
pub id: UserId,
pub state: UserState,
pub avatar_url: String,
pub web_url: String,
pub requested_at: DateTime<UTC>,
}A member with extra permissions on a project.
Fields
username: String
The username.
name: String
The display name.
id: UserId
The user's ID.
state: UserState
The state of the user account.
avatar_url: String
The URL of the user's avatar.
web_url: String
The URL of the user's profile page.
requested_at: DateTime<UTC>
When the membership request was created.
Trait Implementations
impl Debug for AccessRequester[src]
impl Clone for AccessRequester[src]
fn clone(&self) -> AccessRequester
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more