pub struct WebhookPullRequestReviewCommentEdited {
pub action: Action,
pub changes: Box<WebhooksChanges>,
pub comment: Box<WebhooksReviewComment>,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Option<Box<SimpleInstallation>>,
pub organization: Option<Box<OrganizationSimpleWebhooks>>,
pub pull_request: Box<WebhookPullRequestReviewCommentEditedPullRequest>,
pub repository: Box<RepositoryWebhooks>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
§changes: Box<WebhooksChanges>
§comment: Box<WebhooksReviewComment>
§enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Option<Box<SimpleInstallation>>
§organization: Option<Box<OrganizationSimpleWebhooks>>
§pull_request: Box<WebhookPullRequestReviewCommentEditedPullRequest>
§repository: Box<RepositoryWebhooks>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookPullRequestReviewCommentEdited
impl WebhookPullRequestReviewCommentEdited
pub fn new( action: Action, changes: WebhooksChanges, comment: WebhooksReviewComment, pull_request: WebhookPullRequestReviewCommentEditedPullRequest, repository: RepositoryWebhooks, sender: SimpleUserWebhooks, ) -> WebhookPullRequestReviewCommentEdited
Trait Implementations§
Source§impl Clone for WebhookPullRequestReviewCommentEdited
impl Clone for WebhookPullRequestReviewCommentEdited
Source§fn clone(&self) -> WebhookPullRequestReviewCommentEdited
fn clone(&self) -> WebhookPullRequestReviewCommentEdited
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 Default for WebhookPullRequestReviewCommentEdited
impl Default for WebhookPullRequestReviewCommentEdited
Source§fn default() -> WebhookPullRequestReviewCommentEdited
fn default() -> WebhookPullRequestReviewCommentEdited
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookPullRequestReviewCommentEdited
impl<'de> Deserialize<'de> for WebhookPullRequestReviewCommentEdited
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 WebhookPullRequestReviewCommentEdited
impl PartialEq for WebhookPullRequestReviewCommentEdited
Source§fn eq(&self, other: &WebhookPullRequestReviewCommentEdited) -> bool
fn eq(&self, other: &WebhookPullRequestReviewCommentEdited) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookPullRequestReviewCommentEdited
Auto Trait Implementations§
impl Freeze for WebhookPullRequestReviewCommentEdited
impl RefUnwindSafe for WebhookPullRequestReviewCommentEdited
impl Send for WebhookPullRequestReviewCommentEdited
impl Sync for WebhookPullRequestReviewCommentEdited
impl Unpin for WebhookPullRequestReviewCommentEdited
impl UnwindSafe for WebhookPullRequestReviewCommentEdited
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