pub enum CheckRunAction {
Created,
Completed,
Rerequested,
RequestedAction,
}Expand description
Check run action
The type of activity that has occurred.
Variants§
Created
A new check run was created.
Completed
The status of the CheckRun is completed.
Rerequested
Someone requested to re-run your check run from the pull request UI.
RequestedAction
Someone requested an action your app provides to be taken.
Trait Implementations§
Source§impl Clone for CheckRunAction
impl Clone for CheckRunAction
Source§fn clone(&self) -> CheckRunAction
fn clone(&self) -> CheckRunAction
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 CheckRunAction
impl Debug for CheckRunAction
Source§impl<'de> Deserialize<'de> for CheckRunAction
impl<'de> Deserialize<'de> for CheckRunAction
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 Display for CheckRunAction
impl Display for CheckRunAction
Source§impl Hash for CheckRunAction
impl Hash for CheckRunAction
Source§impl Ord for CheckRunAction
impl Ord for CheckRunAction
Source§fn cmp(&self, other: &CheckRunAction) -> Ordering
fn cmp(&self, other: &CheckRunAction) -> 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 CheckRunAction
impl PartialEq for CheckRunAction
Source§impl PartialOrd for CheckRunAction
impl PartialOrd for CheckRunAction
Source§impl Serialize for CheckRunAction
impl Serialize for CheckRunAction
impl Copy for CheckRunAction
impl Eq for CheckRunAction
impl StructuralPartialEq for CheckRunAction
Auto Trait Implementations§
impl Freeze for CheckRunAction
impl RefUnwindSafe for CheckRunAction
impl Send for CheckRunAction
impl Sync for CheckRunAction
impl Unpin for CheckRunAction
impl UnwindSafe for CheckRunAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.