Struct gitlab::systemhooks::UserSystemHook[][src]

pub struct UserSystemHook {
    pub event_name: UserEvent,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub name: String,
    pub email: String,
    pub user_id: UserId,
    pub username: String,
}

A user hook.

Fields

The event which occurred.

When the user account was created.

When the user account was last updated.

The name of the user.

The email address of the user.

The ID of the user.

The username of the user.

Trait Implementations

impl Debug for UserSystemHook
[src]

Formats the value using the given formatter. Read more

impl Clone for UserSystemHook
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations