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