[][src]Struct gitlab::types::ProjectHook

pub struct ProjectHook {
    pub id: HookId,
    pub url: String,
    pub created_at: DateTime<Utc>,
    pub project_id: ProjectId,
    pub push_events: bool,
    pub push_events_branch_filter: Option<String>,
    pub tag_push_events: bool,
    pub issues_events: bool,
    pub confidential_issues_events: Option<bool>,
    pub merge_requests_events: bool,
    pub note_events: bool,
    pub confidential_note_events: Option<bool>,
    pub repository_update_events: bool,
    pub enable_ssl_verification: bool,
    pub job_events: bool,
    pub pipeline_events: bool,
    pub wiki_page_events: bool,
}

A web hook to notify of project events.

Fields

id: HookId

The ID of the hook.

url: String

The URL to contact.

created_at: DateTime<Utc>

When the hook was created.

project_id: ProjectId

The project associated with the hook.

push_events: bool

Whether the hook is contacted for push events.

push_events_branch_filter: Option<String>

Filter branches for which the hook is contacted for push events.

tag_push_events: bool

Whether the hook is contacted for tag push events.

issues_events: bool

Whether the hook is contacted for issue events.

confidential_issues_events: Option<bool>

Whether the hook is contacted for confidential issue events.

merge_requests_events: bool

Whether the hook is contacted for merge request events.

note_events: bool

Whether the hook is contacted for note events.

confidential_note_events: Option<bool>

Whether the hook is contacted for confidential note events.

repository_update_events: bool

Whether the hook is contacted for repository update events.

enable_ssl_verification: bool

Whether the communication with the hook is verified using TLS certificates.

job_events: bool

Whether the hook is contacted for job events.

pipeline_events: bool

Whether the hook is contacted for pipeline events.

wiki_page_events: bool

Whether the hook is contacted for wiki page events.

Trait Implementations

impl From<ProjectHook> for Hook[src]

impl Clone for ProjectHook[src]

impl Debug for ProjectHook[src]

impl Serialize for ProjectHook[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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