pub struct WebhookInstallationDeleted {
pub action: Action,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Box<Installation>,
pub organization: Option<Box<OrganizationSimpleWebhooks>>,
pub repositories: Option<Vec<WebhooksRepositoriesInner>>,
pub repository: Option<Box<RepositoryWebhooks>>,
pub requester: Option<Option<Value>>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
§enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Box<Installation>
§organization: Option<Box<OrganizationSimpleWebhooks>>
§repositories: Option<Vec<WebhooksRepositoriesInner>>
An array of repository objects that the installation can access.
repository: Option<Box<RepositoryWebhooks>>
§requester: Option<Option<Value>>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookInstallationDeleted
impl WebhookInstallationDeleted
pub fn new( action: Action, installation: Installation, sender: SimpleUserWebhooks, ) -> WebhookInstallationDeleted
Trait Implementations§
Source§impl Clone for WebhookInstallationDeleted
impl Clone for WebhookInstallationDeleted
Source§fn clone(&self) -> WebhookInstallationDeleted
fn clone(&self) -> WebhookInstallationDeleted
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 WebhookInstallationDeleted
impl Debug for WebhookInstallationDeleted
Source§impl Default for WebhookInstallationDeleted
impl Default for WebhookInstallationDeleted
Source§fn default() -> WebhookInstallationDeleted
fn default() -> WebhookInstallationDeleted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookInstallationDeleted
impl<'de> Deserialize<'de> for WebhookInstallationDeleted
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
impl StructuralPartialEq for WebhookInstallationDeleted
Auto Trait Implementations§
impl Freeze for WebhookInstallationDeleted
impl RefUnwindSafe for WebhookInstallationDeleted
impl Send for WebhookInstallationDeleted
impl Sync for WebhookInstallationDeleted
impl Unpin for WebhookInstallationDeleted
impl UnwindSafe for WebhookInstallationDeleted
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