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