pub enum CheckRunRerequestedCheckRunConclusion {
Success,
Failure,
Neutral,
Cancelled,
TimedOut,
ActionRequired,
Stale,
Skipped,
}
Expand description
The result of the completed check run. Can be one of success
, failure
, neutral
, cancelled
, timed_out
, action_required
or stale
. This value will be null
until the check run has completed
.
JSON schema
{
"description": "The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.",
"type": "string",
"enum": [
"success",
"failure",
"neutral",
"cancelled",
"timed_out",
"action_required",
"stale",
"skipped"
]
}
Variants§
Trait Implementations§
Source§impl Clone for CheckRunRerequestedCheckRunConclusion
impl Clone for CheckRunRerequestedCheckRunConclusion
Source§fn clone(&self) -> CheckRunRerequestedCheckRunConclusion
fn clone(&self) -> CheckRunRerequestedCheckRunConclusion
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<'de> Deserialize<'de> for CheckRunRerequestedCheckRunConclusion
impl<'de> Deserialize<'de> for CheckRunRerequestedCheckRunConclusion
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<&CheckRunRerequestedCheckRunConclusion> for CheckRunRerequestedCheckRunConclusion
impl From<&CheckRunRerequestedCheckRunConclusion> for CheckRunRerequestedCheckRunConclusion
Source§fn from(value: &CheckRunRerequestedCheckRunConclusion) -> Self
fn from(value: &CheckRunRerequestedCheckRunConclusion) -> Self
Converts to this type from the input type.
Source§impl Ord for CheckRunRerequestedCheckRunConclusion
impl Ord for CheckRunRerequestedCheckRunConclusion
Source§fn cmp(&self, other: &CheckRunRerequestedCheckRunConclusion) -> Ordering
fn cmp(&self, other: &CheckRunRerequestedCheckRunConclusion) -> 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 CheckRunRerequestedCheckRunConclusion
impl PartialEq for CheckRunRerequestedCheckRunConclusion
Source§fn eq(&self, other: &CheckRunRerequestedCheckRunConclusion) -> bool
fn eq(&self, other: &CheckRunRerequestedCheckRunConclusion) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for CheckRunRerequestedCheckRunConclusion
impl PartialOrd for CheckRunRerequestedCheckRunConclusion
impl Copy for CheckRunRerequestedCheckRunConclusion
impl Eq for CheckRunRerequestedCheckRunConclusion
impl StructuralPartialEq for CheckRunRerequestedCheckRunConclusion
Auto Trait Implementations§
impl Freeze for CheckRunRerequestedCheckRunConclusion
impl RefUnwindSafe for CheckRunRerequestedCheckRunConclusion
impl Send for CheckRunRerequestedCheckRunConclusion
impl Sync for CheckRunRerequestedCheckRunConclusion
impl Unpin for CheckRunRerequestedCheckRunConclusion
impl UnwindSafe for CheckRunRerequestedCheckRunConclusion
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