pub enum IssueAction {
Show 14 variants
Opened,
Edited,
Deleted,
Transferred,
Pinned,
Unpinned,
Closed,
Reopened,
Assigned,
Unassigned,
Labeled,
Unlabeled,
Milestoned,
Demilestoned,
}
Variants§
Opened
Edited
Deleted
Transferred
Pinned
Unpinned
Closed
Reopened
Assigned
Unassigned
Labeled
Unlabeled
Milestoned
Demilestoned
Trait Implementations§
Source§impl Clone for IssueAction
impl Clone for IssueAction
Source§fn clone(&self) -> IssueAction
fn clone(&self) -> IssueAction
Returns a copy 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 IssueAction
impl Debug for IssueAction
Source§impl<'de> Deserialize<'de> for IssueAction
impl<'de> Deserialize<'de> for IssueAction
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 Hash for IssueAction
impl Hash for IssueAction
Source§impl Ord for IssueAction
impl Ord for IssueAction
Source§fn cmp(&self, other: &IssueAction) -> Ordering
fn cmp(&self, other: &IssueAction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IssueAction
impl PartialEq for IssueAction
Source§impl PartialOrd for IssueAction
impl PartialOrd for IssueAction
impl Copy for IssueAction
impl Eq for IssueAction
impl StructuralPartialEq for IssueAction
Auto Trait Implementations§
impl Freeze for IssueAction
impl RefUnwindSafe for IssueAction
impl Send for IssueAction
impl Sync for IssueAction
impl Unpin for IssueAction
impl UnwindSafe for IssueAction
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