pub struct WebhookIssueCommentDeleted {
pub action: Action,
pub comment: Box<WebhooksIssueComment>,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Option<Box<SimpleInstallation>>,
pub issue: Box<WebhookIssueCommentDeletedIssue>,
pub organization: Option<Box<OrganizationSimpleWebhooks>>,
pub repository: Box<RepositoryWebhooks>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
§comment: Box<WebhooksIssueComment>
§enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Option<Box<SimpleInstallation>>
§issue: Box<WebhookIssueCommentDeletedIssue>
§organization: Option<Box<OrganizationSimpleWebhooks>>
§repository: Box<RepositoryWebhooks>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookIssueCommentDeleted
impl WebhookIssueCommentDeleted
pub fn new( action: Action, comment: WebhooksIssueComment, issue: WebhookIssueCommentDeletedIssue, repository: RepositoryWebhooks, sender: SimpleUserWebhooks, ) -> WebhookIssueCommentDeleted
Trait Implementations§
Source§impl Clone for WebhookIssueCommentDeleted
impl Clone for WebhookIssueCommentDeleted
Source§fn clone(&self) -> WebhookIssueCommentDeleted
fn clone(&self) -> WebhookIssueCommentDeleted
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 WebhookIssueCommentDeleted
impl Debug for WebhookIssueCommentDeleted
Source§impl Default for WebhookIssueCommentDeleted
impl Default for WebhookIssueCommentDeleted
Source§fn default() -> WebhookIssueCommentDeleted
fn default() -> WebhookIssueCommentDeleted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookIssueCommentDeleted
impl<'de> Deserialize<'de> for WebhookIssueCommentDeleted
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
impl StructuralPartialEq for WebhookIssueCommentDeleted
Auto Trait Implementations§
impl Freeze for WebhookIssueCommentDeleted
impl RefUnwindSafe for WebhookIssueCommentDeleted
impl Send for WebhookIssueCommentDeleted
impl Sync for WebhookIssueCommentDeleted
impl Unpin for WebhookIssueCommentDeleted
impl UnwindSafe for WebhookIssueCommentDeleted
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