[][src]Struct gitlab::systemhooks::GroupMemberSystemHook

pub struct GroupMemberSystemHook {
    pub event_name: GroupMemberEvent,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub group_name: String,
    pub group_path: String,
    pub group_id: GroupId,
    pub user_username: String,
    pub user_name: String,
    pub user_email: String,
    pub user_id: UserId,
    pub group_access: HumanAccessLevel,
}

A group membership hook.

Fields

event_name: GroupMemberEvent

The event which occurred.

created_at: DateTime<Utc>

When the group membership was added.

updated_at: DateTime<Utc>

When the group membership was last updated.

group_name: String

The name of the group.

group_path: String

The path of the group (used for URLs).

group_id: GroupId

The ID of the group.

user_username: String

The username of the user.

user_name: String

The name of the user.

user_email: String

The email address of the user.

user_id: UserId

The ID of the user.

group_access: HumanAccessLevel

The access level of the user.

Trait Implementations

impl Clone for GroupMemberSystemHook[src]

impl Debug for GroupMemberSystemHook[src]

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

impl Serialize for GroupMemberSystemHook[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.