Struct gitlab::webhooks::IssueHookAttrs [−][src]
Issue information exposed in hooks.
Fields
id: IssueIdThe ID of the issue.
title: StringThe title of the issue.
assignee_id: Option<UserId>The ID of the assignee of the issue.
The ID of the author of the issue.
project_id: ProjectIdThe ID of the project.
created_at: HookDateWhen the issue was created.
updated_at: HookDateWhen the issue was last updated.
deleted_at: Option<HookDate>When the issue was deleted.
closed_at: Option<HookDate>When the issue was closed.
due_date: Option<NaiveDate>When the issue is due.
updated_by_id: Option<UserId>The ID of the user which last updated the issue.
moved_to_id: Option<Value>branch_name: Option<String>The branch name for the issue.
description: Option<String>The description of the issue.
milestone_id: Option<MilestoneId>The ID of the milestone of the issue.
state: IssueStateThe state of the issue.
iid: IssueInternalIdThe user-visible ID of the issue.
confidential: boolWhether the issue is confidential or not.
time_estimate: u64The time estimate, in seconds.
total_time_spent: u64The total time spent, in seconds.
human_time_estimate: Option<String>The time estimate, as a human-readable string.
human_total_time_spent: Option<String>The total time spent, as a human-readable string.
url: Option<String>The URL of the issue.
action: Option<IssueAction>The type of action which caused the hook.
Trait Implementations
impl Clone for IssueHookAttrs[src]
fn clone(&self) -> IssueHookAttrs[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for IssueHookAttrs[src]
impl<'de> Deserialize<'de> for IssueHookAttrs[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for IssueHookAttrs[src]
Auto Trait Implementations
impl RefUnwindSafe for IssueHookAttrs
impl Send for IssueHookAttrs
impl Sync for IssueHookAttrs
impl Unpin for IssueHookAttrs
impl UnwindSafe for IssueHookAttrs
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,