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