pub struct WebhookLabelDeleted {
pub action: Action,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Option<Box<SimpleInstallation>>,
pub label: Box<WebhooksLabel>,
pub organization: Option<Box<OrganizationSimpleWebhooks>>,
pub repository: Box<RepositoryWebhooks>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
§enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Option<Box<SimpleInstallation>>
§label: Box<WebhooksLabel>
§organization: Option<Box<OrganizationSimpleWebhooks>>
§repository: Box<RepositoryWebhooks>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookLabelDeleted
impl WebhookLabelDeleted
pub fn new( action: Action, label: WebhooksLabel, repository: RepositoryWebhooks, sender: SimpleUserWebhooks, ) -> WebhookLabelDeleted
Trait Implementations§
Source§impl Clone for WebhookLabelDeleted
impl Clone for WebhookLabelDeleted
Source§fn clone(&self) -> WebhookLabelDeleted
fn clone(&self) -> WebhookLabelDeleted
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 WebhookLabelDeleted
impl Debug for WebhookLabelDeleted
Source§impl Default for WebhookLabelDeleted
impl Default for WebhookLabelDeleted
Source§fn default() -> WebhookLabelDeleted
fn default() -> WebhookLabelDeleted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookLabelDeleted
impl<'de> Deserialize<'de> for WebhookLabelDeleted
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 WebhookLabelDeleted
impl PartialEq for WebhookLabelDeleted
Source§impl Serialize for WebhookLabelDeleted
impl Serialize for WebhookLabelDeleted
impl StructuralPartialEq for WebhookLabelDeleted
Auto Trait Implementations§
impl Freeze for WebhookLabelDeleted
impl RefUnwindSafe for WebhookLabelDeleted
impl Send for WebhookLabelDeleted
impl Sync for WebhookLabelDeleted
impl Unpin for WebhookLabelDeleted
impl UnwindSafe for WebhookLabelDeleted
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