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