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