pub struct WebhookPullRequestReviewDismissedReview {
pub _links: Box<WebhooksReviewLinks>,
pub author_association: AuthorAssociation,
pub body: Option<String>,
pub commit_id: String,
pub html_url: String,
pub id: i32,
pub node_id: String,
pub pull_request_url: String,
pub state: State,
pub submitted_at: String,
pub user: Option<Box<User1>>,
}Expand description
WebhookPullRequestReviewDismissedReview : The review that was affected.
Fields§
§_links: Box<WebhooksReviewLinks>How the author is associated with the repository.
body: Option<String>The text of the review.
commit_id: StringA commit SHA for the review.
html_url: String§id: i32Unique identifier of the review
node_id: String§pull_request_url: String§state: State§submitted_at: String§user: Option<Box<User1>>Implementations§
Source§impl WebhookPullRequestReviewDismissedReview
impl WebhookPullRequestReviewDismissedReview
Sourcepub fn new(
_links: WebhooksReviewLinks,
author_association: AuthorAssociation,
body: Option<String>,
commit_id: String,
html_url: String,
id: i32,
node_id: String,
pull_request_url: String,
state: State,
submitted_at: String,
user: Option<User1>,
) -> WebhookPullRequestReviewDismissedReview
pub fn new( _links: WebhooksReviewLinks, author_association: AuthorAssociation, body: Option<String>, commit_id: String, html_url: String, id: i32, node_id: String, pull_request_url: String, state: State, submitted_at: String, user: Option<User1>, ) -> WebhookPullRequestReviewDismissedReview
The review that was affected.
Trait Implementations§
Source§impl Clone for WebhookPullRequestReviewDismissedReview
impl Clone for WebhookPullRequestReviewDismissedReview
Source§fn clone(&self) -> WebhookPullRequestReviewDismissedReview
fn clone(&self) -> WebhookPullRequestReviewDismissedReview
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 WebhookPullRequestReviewDismissedReview
impl Default for WebhookPullRequestReviewDismissedReview
Source§fn default() -> WebhookPullRequestReviewDismissedReview
fn default() -> WebhookPullRequestReviewDismissedReview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookPullRequestReviewDismissedReview
impl<'de> Deserialize<'de> for WebhookPullRequestReviewDismissedReview
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 WebhookPullRequestReviewDismissedReview
impl PartialEq for WebhookPullRequestReviewDismissedReview
Source§fn eq(&self, other: &WebhookPullRequestReviewDismissedReview) -> bool
fn eq(&self, other: &WebhookPullRequestReviewDismissedReview) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebhookPullRequestReviewDismissedReview
Auto Trait Implementations§
impl Freeze for WebhookPullRequestReviewDismissedReview
impl RefUnwindSafe for WebhookPullRequestReviewDismissedReview
impl Send for WebhookPullRequestReviewDismissedReview
impl Sync for WebhookPullRequestReviewDismissedReview
impl Unpin for WebhookPullRequestReviewDismissedReview
impl UnwindSafe for WebhookPullRequestReviewDismissedReview
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