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