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