[][src]Struct gitlab::types::AccessRequester

pub struct AccessRequester {
    pub username: String,
    pub name: String,
    pub id: UserId,
    pub state: UserState,
    pub avatar_url: Option<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: Option<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 Clone for AccessRequester[src]

impl Debug for AccessRequester[src]

impl<'de> Deserialize<'de> for AccessRequester[src]

impl From<AccessRequester> for UserBasic[src]

impl Serialize for AccessRequester[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UserResult for T where
    T: Into<UserBasic> + DeserializeOwned
[src]