pub struct IssueHook {
pub object_kind: String,
pub user: UserHookAttrs,
pub project: ProjectHookAttrs,
pub object_attributes: IssueHookAttrs,
pub assignee: Option<UserHookAttrs>,
}
Expand description
An issue hook.
Fields
object_kind: String
The event which occurred.
user: UserHookAttrs
The user which triggered the hook.
project: ProjectHookAttrs
The project the hook was created for.
object_attributes: IssueHookAttrs
Attributes of the issue.
assignee: Option<UserHookAttrs>
The assignee of the issue.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for IssueHook
impl<'de> Deserialize<'de> for IssueHook
sourcefn 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 RefUnwindSafe for IssueHook
impl Send for IssueHook
impl Sync for IssueHook
impl Unpin for IssueHook
impl UnwindSafe for IssueHook
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more