pub enum CheckRunConclusion {
Success,
Failure,
Neutral,
Skipped,
Cancelled,
TimedOut,
ActionRequired,
Stale,
}
Expand description
Check run conclusion
When a check run finishes, its conclusion indicates the success or failure of the check run to the user. Branch protection rules can be created to require a successful conclusion before code can be merged into a branch.
Variants§
Success
Check run finished successfully
Failure
Check run failed
Neutral
Check run finished in a neutral state
Skipped
Check run was skipped
Cancelled
Check run was cancelled
TimedOut
Check run timed out
ActionRequired
Check run requested an action from the user
Stale
Check run was marked as stable by GitHub
Trait Implementations§
Source§impl Clone for CheckRunConclusion
impl Clone for CheckRunConclusion
Source§fn clone(&self) -> CheckRunConclusion
fn clone(&self) -> CheckRunConclusion
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 CheckRunConclusion
impl Debug for CheckRunConclusion
Source§impl<'de> Deserialize<'de> for CheckRunConclusion
impl<'de> Deserialize<'de> for CheckRunConclusion
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 CheckRunConclusion
impl Display for CheckRunConclusion
Source§impl Hash for CheckRunConclusion
impl Hash for CheckRunConclusion
Source§impl Ord for CheckRunConclusion
impl Ord for CheckRunConclusion
Source§fn cmp(&self, other: &CheckRunConclusion) -> Ordering
fn cmp(&self, other: &CheckRunConclusion) -> 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 CheckRunConclusion
impl PartialEq for CheckRunConclusion
Source§impl PartialOrd for CheckRunConclusion
impl PartialOrd for CheckRunConclusion
Source§impl Serialize for CheckRunConclusion
impl Serialize for CheckRunConclusion
impl Copy for CheckRunConclusion
impl Eq for CheckRunConclusion
impl StructuralPartialEq for CheckRunConclusion
Auto Trait Implementations§
impl Freeze for CheckRunConclusion
impl RefUnwindSafe for CheckRunConclusion
impl Send for CheckRunConclusion
impl Sync for CheckRunConclusion
impl Unpin for CheckRunConclusion
impl UnwindSafe for CheckRunConclusion
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.