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