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