[][src]Struct gitlab::systemhooks::GroupSystemHook

pub struct GroupSystemHook {
    pub event_name: GroupEvent,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub name: String,
    pub path: String,
    pub group_id: GroupId,
    pub owner_email: Option<String>,
    pub owner_name: Option<String>,
}

A group hook.

Fields

event_name: GroupEvent

The event which occurred.

created_at: DateTime<Utc>

When the group was created.

updated_at: DateTime<Utc>

When the group was last updated.

name: String

The name of the group.

path: String

The path of the group (used for URLs).

group_id: GroupId

The ID of the group.

owner_email: Option<String>

The email address of the owner of the group.

owner_name: Option<String>

The name of the owner of the group.

Trait Implementations

impl Clone for GroupSystemHook[src]

impl Debug for GroupSystemHook[src]

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

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