pub enum IssuesEvent {
Show 16 variants
Assigned(IssuesAssigned),
Closed(IssuesClosed),
Deleted(IssuesDeleted),
Demilestoned(IssuesDemilestoned),
Edited(IssuesEdited),
Labeled(IssuesLabeled),
Locked(IssuesLocked),
Milestoned(IssuesMilestoned),
Opened(IssuesOpened),
Pinned(IssuesPinned),
Reopened(IssuesReopened),
Transferred(IssuesTransferred),
Unassigned(IssuesUnassigned),
Unlabeled(IssuesUnlabeled),
Unlocked(IssuesUnlocked),
Unpinned(IssuesUnpinned),
}
Expand description
IssuesEvent
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/issues$assigned"
},
{
"$ref": "#/definitions/issues$closed"
},
{
"$ref": "#/definitions/issues$deleted"
},
{
"$ref": "#/definitions/issues$demilestoned"
},
{
"$ref": "#/definitions/issues$edited"
},
{
"$ref": "#/definitions/issues$labeled"
},
{
"$ref": "#/definitions/issues$locked"
},
{
"$ref": "#/definitions/issues$milestoned"
},
{
"$ref": "#/definitions/issues$opened"
},
{
"$ref": "#/definitions/issues$pinned"
},
{
"$ref": "#/definitions/issues$reopened"
},
{
"$ref": "#/definitions/issues$transferred"
},
{
"$ref": "#/definitions/issues$unassigned"
},
{
"$ref": "#/definitions/issues$unlabeled"
},
{
"$ref": "#/definitions/issues$unlocked"
},
{
"$ref": "#/definitions/issues$unpinned"
}
]
}
Variants§
Assigned(IssuesAssigned)
Closed(IssuesClosed)
Deleted(IssuesDeleted)
Demilestoned(IssuesDemilestoned)
Edited(IssuesEdited)
Labeled(IssuesLabeled)
Locked(IssuesLocked)
Milestoned(IssuesMilestoned)
Opened(IssuesOpened)
Pinned(IssuesPinned)
Reopened(IssuesReopened)
Transferred(IssuesTransferred)
Unassigned(IssuesUnassigned)
Unlabeled(IssuesUnlabeled)
Unlocked(IssuesUnlocked)
Unpinned(IssuesUnpinned)
Trait Implementations§
Source§impl Clone for IssuesEvent
impl Clone for IssuesEvent
Source§fn clone(&self) -> IssuesEvent
fn clone(&self) -> IssuesEvent
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 IssuesEvent
impl Debug for IssuesEvent
Source§impl<'de> Deserialize<'de> for IssuesEvent
impl<'de> Deserialize<'de> for IssuesEvent
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 From<&IssuesEvent> for IssuesEvent
impl From<&IssuesEvent> for IssuesEvent
Source§fn from(value: &IssuesEvent) -> Self
fn from(value: &IssuesEvent) -> Self
Converts to this type from the input type.
Source§impl From<IssuesAssigned> for IssuesEvent
impl From<IssuesAssigned> for IssuesEvent
Source§fn from(value: IssuesAssigned) -> Self
fn from(value: IssuesAssigned) -> Self
Converts to this type from the input type.
Source§impl From<IssuesClosed> for IssuesEvent
impl From<IssuesClosed> for IssuesEvent
Source§fn from(value: IssuesClosed) -> Self
fn from(value: IssuesClosed) -> Self
Converts to this type from the input type.
Source§impl From<IssuesDeleted> for IssuesEvent
impl From<IssuesDeleted> for IssuesEvent
Source§fn from(value: IssuesDeleted) -> Self
fn from(value: IssuesDeleted) -> Self
Converts to this type from the input type.
Source§impl From<IssuesDemilestoned> for IssuesEvent
impl From<IssuesDemilestoned> for IssuesEvent
Source§fn from(value: IssuesDemilestoned) -> Self
fn from(value: IssuesDemilestoned) -> Self
Converts to this type from the input type.
Source§impl From<IssuesEdited> for IssuesEvent
impl From<IssuesEdited> for IssuesEvent
Source§fn from(value: IssuesEdited) -> Self
fn from(value: IssuesEdited) -> Self
Converts to this type from the input type.
Source§impl From<IssuesLabeled> for IssuesEvent
impl From<IssuesLabeled> for IssuesEvent
Source§fn from(value: IssuesLabeled) -> Self
fn from(value: IssuesLabeled) -> Self
Converts to this type from the input type.
Source§impl From<IssuesLocked> for IssuesEvent
impl From<IssuesLocked> for IssuesEvent
Source§fn from(value: IssuesLocked) -> Self
fn from(value: IssuesLocked) -> Self
Converts to this type from the input type.
Source§impl From<IssuesMilestoned> for IssuesEvent
impl From<IssuesMilestoned> for IssuesEvent
Source§fn from(value: IssuesMilestoned) -> Self
fn from(value: IssuesMilestoned) -> Self
Converts to this type from the input type.
Source§impl From<IssuesOpened> for IssuesEvent
impl From<IssuesOpened> for IssuesEvent
Source§fn from(value: IssuesOpened) -> Self
fn from(value: IssuesOpened) -> Self
Converts to this type from the input type.
Source§impl From<IssuesPinned> for IssuesEvent
impl From<IssuesPinned> for IssuesEvent
Source§fn from(value: IssuesPinned) -> Self
fn from(value: IssuesPinned) -> Self
Converts to this type from the input type.
Source§impl From<IssuesReopened> for IssuesEvent
impl From<IssuesReopened> for IssuesEvent
Source§fn from(value: IssuesReopened) -> Self
fn from(value: IssuesReopened) -> Self
Converts to this type from the input type.
Source§impl From<IssuesTransferred> for IssuesEvent
impl From<IssuesTransferred> for IssuesEvent
Source§fn from(value: IssuesTransferred) -> Self
fn from(value: IssuesTransferred) -> Self
Converts to this type from the input type.
Source§impl From<IssuesUnassigned> for IssuesEvent
impl From<IssuesUnassigned> for IssuesEvent
Source§fn from(value: IssuesUnassigned) -> Self
fn from(value: IssuesUnassigned) -> Self
Converts to this type from the input type.
Source§impl From<IssuesUnlabeled> for IssuesEvent
impl From<IssuesUnlabeled> for IssuesEvent
Source§fn from(value: IssuesUnlabeled) -> Self
fn from(value: IssuesUnlabeled) -> Self
Converts to this type from the input type.
Source§impl From<IssuesUnlocked> for IssuesEvent
impl From<IssuesUnlocked> for IssuesEvent
Source§fn from(value: IssuesUnlocked) -> Self
fn from(value: IssuesUnlocked) -> Self
Converts to this type from the input type.
Source§impl From<IssuesUnpinned> for IssuesEvent
impl From<IssuesUnpinned> for IssuesEvent
Source§fn from(value: IssuesUnpinned) -> Self
fn from(value: IssuesUnpinned) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IssuesEvent
impl RefUnwindSafe for IssuesEvent
impl Send for IssuesEvent
impl Sync for IssuesEvent
impl Unpin for IssuesEvent
impl UnwindSafe for IssuesEvent
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