pub struct WebhookSubIssuesParentIssueRemoved {
pub action: Option<String>,
pub parent_issue_id: Option<f64>,
pub parent_issue: Option<Issue>,
pub parent_issue_repo: Option<Repository>,
pub sub_issue_id: Option<f64>,
pub sub_issue: Option<Issue>,
pub installation: Option<SimpleInstallation>,
pub organization: Option<OrganizationSimpleWebhooks>,
pub repository: Option<RepositoryWebhooks>,
pub sender: Option<SimpleUser>,
}Fields§
§action: Option<String>§parent_issue_id: Option<f64>The ID of the parent issue.
parent_issue: Option<Issue>§parent_issue_repo: Option<Repository>§sub_issue_id: Option<f64>The ID of the sub-issue.
sub_issue: Option<Issue>§installation: Option<SimpleInstallation>§organization: Option<OrganizationSimpleWebhooks>§repository: Option<RepositoryWebhooks>§sender: Option<SimpleUser>Trait Implementations§
Source§impl Clone for WebhookSubIssuesParentIssueRemoved
impl Clone for WebhookSubIssuesParentIssueRemoved
Source§fn clone(&self) -> WebhookSubIssuesParentIssueRemoved
fn clone(&self) -> WebhookSubIssuesParentIssueRemoved
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 Default for WebhookSubIssuesParentIssueRemoved
impl Default for WebhookSubIssuesParentIssueRemoved
Source§fn default() -> WebhookSubIssuesParentIssueRemoved
fn default() -> WebhookSubIssuesParentIssueRemoved
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookSubIssuesParentIssueRemoved
impl<'de> Deserialize<'de> for WebhookSubIssuesParentIssueRemoved
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 WebhookSubIssuesParentIssueRemoved
impl PartialEq for WebhookSubIssuesParentIssueRemoved
Source§fn eq(&self, other: &WebhookSubIssuesParentIssueRemoved) -> bool
fn eq(&self, other: &WebhookSubIssuesParentIssueRemoved) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebhookSubIssuesParentIssueRemoved
Auto Trait Implementations§
impl Freeze for WebhookSubIssuesParentIssueRemoved
impl RefUnwindSafe for WebhookSubIssuesParentIssueRemoved
impl Send for WebhookSubIssuesParentIssueRemoved
impl Sync for WebhookSubIssuesParentIssueRemoved
impl Unpin for WebhookSubIssuesParentIssueRemoved
impl UnwindSafe for WebhookSubIssuesParentIssueRemoved
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