pub enum CheckRunStatus {
Queued,
InProgress,
Completed,
}
Expand description
Check run status
Check runs can be in one of three states. When a check run is created, the status is queued
.
Once its dependencies are ready and the execution starts, the status changes to in progress
.
Finally, the check run is finished and the status is set to completed
.
Variants§
Trait Implementations§
Source§impl Clone for CheckRunStatus
impl Clone for CheckRunStatus
Source§fn clone(&self) -> CheckRunStatus
fn clone(&self) -> CheckRunStatus
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 CheckRunStatus
impl Debug for CheckRunStatus
Source§impl<'de> Deserialize<'de> for CheckRunStatus
impl<'de> Deserialize<'de> for CheckRunStatus
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 CheckRunStatus
impl Display for CheckRunStatus
Source§impl Hash for CheckRunStatus
impl Hash for CheckRunStatus
Source§impl Ord for CheckRunStatus
impl Ord for CheckRunStatus
Source§fn cmp(&self, other: &CheckRunStatus) -> Ordering
fn cmp(&self, other: &CheckRunStatus) -> 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 CheckRunStatus
impl PartialEq for CheckRunStatus
Source§impl PartialOrd for CheckRunStatus
impl PartialOrd for CheckRunStatus
Source§impl Serialize for CheckRunStatus
impl Serialize for CheckRunStatus
impl Copy for CheckRunStatus
impl Eq for CheckRunStatus
impl StructuralPartialEq for CheckRunStatus
Auto Trait Implementations§
impl Freeze for CheckRunStatus
impl RefUnwindSafe for CheckRunStatus
impl Send for CheckRunStatus
impl Sync for CheckRunStatus
impl Unpin for CheckRunStatus
impl UnwindSafe for CheckRunStatus
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.