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