[][src]Struct gitlab::webhooks::NoteHook

pub struct NoteHook {
    pub object_kind: String,
    pub user: UserHookAttrs,
    pub project_id: ProjectId,
    pub project: ProjectHookAttrs,
    pub object_attributes: NoteHookAttrs,
    pub commit: Option<CommitHookAttrs>,
    pub issue: Option<IssueHookAttrs>,
    pub merge_request: Option<MergeRequestHookAttrs>,
    pub snippet: Option<SnippetHookAttrs>,
    // some fields omitted
}

A note hook.

Fields

object_kind: String

The event which occurred.

user: UserHookAttrs

The user who triggered the hook.

project_id: ProjectId

The ID of the project the note belongs to.

project: ProjectHookAttrs

The project the note belongs to.

object_attributes: NoteHookAttrs

The attributes on the note itself.

commit: Option<CommitHookAttrs>

The commit the note is associated with (for commit notes).

issue: Option<IssueHookAttrs>

The issue the note is associated with (for issue notes).

merge_request: Option<MergeRequestHookAttrs>

The merge request the note is associated with (for merge request notes).

snippet: Option<SnippetHookAttrs>

The snippet the note is associated with (for snippet notes).

Trait Implementations

impl Clone for NoteHook[src]

impl Debug for NoteHook[src]

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

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