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