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