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