pub struct NoteHook {
pub object_kind: String,
pub user: UserHookAttrs,
pub project_id: u64,
pub project: ProjectHookAttrs,
pub object_attributes: NoteHookAttrs,
pub commit: Option<CommitHookAttrs>,
pub issue: Option<IssueHookAttrs>,
pub merge_request: Option<MergeRequestHookAttrs>,
pub snippet: Option<SnippetHookAttrs>,
}
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
Expand description
A note hook.
Fields§
§object_kind: String
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The event which occurred.
user: UserHookAttrs
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The user who triggered the hook.
project_id: u64
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The ID of the project the note belongs to.
project: ProjectHookAttrs
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The project the note belongs to.
object_attributes: NoteHookAttrs
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The attributes on the note itself.
commit: Option<CommitHookAttrs>
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The commit the note is associated with (for commit notes).
issue: Option<IssueHookAttrs>
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The issue the note is associated with (for issue notes).
merge_request: Option<MergeRequestHookAttrs>
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The merge request the note is associated with (for merge request notes).
snippet: Option<SnippetHookAttrs>
👎Deprecated since 0.1705.1: stable hook APIs are not feasible
The snippet the note is associated with (for snippet notes).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NoteHook
impl<'de> Deserialize<'de> for NoteHook
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NoteHook
impl RefUnwindSafe for NoteHook
impl Send for NoteHook
impl Sync for NoteHook
impl Unpin for NoteHook
impl UnwindSafe for NoteHook
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more