pub struct WebhookIssuesClosed {
pub action: Action,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Option<Box<SimpleInstallation>>,
pub issue: Box<WebhookIssuesClosedIssue>,
pub organization: Option<Box<OrganizationSimpleWebhooks>>,
pub repository: Box<RepositoryWebhooks>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
The action that was performed.
enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Option<Box<SimpleInstallation>>
§issue: Box<WebhookIssuesClosedIssue>
§organization: Option<Box<OrganizationSimpleWebhooks>>
§repository: Box<RepositoryWebhooks>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookIssuesClosed
impl WebhookIssuesClosed
pub fn new( action: Action, issue: WebhookIssuesClosedIssue, repository: RepositoryWebhooks, sender: SimpleUserWebhooks, ) -> WebhookIssuesClosed
Trait Implementations§
Source§impl Clone for WebhookIssuesClosed
impl Clone for WebhookIssuesClosed
Source§fn clone(&self) -> WebhookIssuesClosed
fn clone(&self) -> WebhookIssuesClosed
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebhookIssuesClosed
impl Debug for WebhookIssuesClosed
Source§impl Default for WebhookIssuesClosed
impl Default for WebhookIssuesClosed
Source§fn default() -> WebhookIssuesClosed
fn default() -> WebhookIssuesClosed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookIssuesClosed
impl<'de> Deserialize<'de> for WebhookIssuesClosed
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
Source§impl PartialEq for WebhookIssuesClosed
impl PartialEq for WebhookIssuesClosed
Source§impl Serialize for WebhookIssuesClosed
impl Serialize for WebhookIssuesClosed
impl StructuralPartialEq for WebhookIssuesClosed
Auto Trait Implementations§
impl Freeze for WebhookIssuesClosed
impl RefUnwindSafe for WebhookIssuesClosed
impl Send for WebhookIssuesClosed
impl Sync for WebhookIssuesClosed
impl Unpin for WebhookIssuesClosed
impl UnwindSafe for WebhookIssuesClosed
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