pub enum DeploymentStatusCreatedCheckRunConclusion {
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 DeploymentStatusCreatedCheckRunConclusion
impl Clone for DeploymentStatusCreatedCheckRunConclusion
Source§fn clone(&self) -> DeploymentStatusCreatedCheckRunConclusion
fn clone(&self) -> DeploymentStatusCreatedCheckRunConclusion
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 DeploymentStatusCreatedCheckRunConclusion
impl<'de> Deserialize<'de> for DeploymentStatusCreatedCheckRunConclusion
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<&DeploymentStatusCreatedCheckRunConclusion> for DeploymentStatusCreatedCheckRunConclusion
impl From<&DeploymentStatusCreatedCheckRunConclusion> for DeploymentStatusCreatedCheckRunConclusion
Source§fn from(value: &DeploymentStatusCreatedCheckRunConclusion) -> Self
fn from(value: &DeploymentStatusCreatedCheckRunConclusion) -> Self
Converts to this type from the input type.
Source§impl Ord for DeploymentStatusCreatedCheckRunConclusion
impl Ord for DeploymentStatusCreatedCheckRunConclusion
Source§fn cmp(&self, other: &DeploymentStatusCreatedCheckRunConclusion) -> Ordering
fn cmp(&self, other: &DeploymentStatusCreatedCheckRunConclusion) -> 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 DeploymentStatusCreatedCheckRunConclusion
impl PartialEq for DeploymentStatusCreatedCheckRunConclusion
Source§fn eq(&self, other: &DeploymentStatusCreatedCheckRunConclusion) -> bool
fn eq(&self, other: &DeploymentStatusCreatedCheckRunConclusion) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for DeploymentStatusCreatedCheckRunConclusion
impl PartialOrd for DeploymentStatusCreatedCheckRunConclusion
impl Copy for DeploymentStatusCreatedCheckRunConclusion
impl Eq for DeploymentStatusCreatedCheckRunConclusion
impl StructuralPartialEq for DeploymentStatusCreatedCheckRunConclusion
Auto Trait Implementations§
impl Freeze for DeploymentStatusCreatedCheckRunConclusion
impl RefUnwindSafe for DeploymentStatusCreatedCheckRunConclusion
impl Send for DeploymentStatusCreatedCheckRunConclusion
impl Sync for DeploymentStatusCreatedCheckRunConclusion
impl Unpin for DeploymentStatusCreatedCheckRunConclusion
impl UnwindSafe for DeploymentStatusCreatedCheckRunConclusion
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