pub enum WorkflowJobCompletedWorkflowJobStatus {
Queued,
InProgress,
Completed,
Waiting,
}
Expand description
The current status of the job. Can be queued
, in_progress
, or completed
.
JSON schema
{
"description": "The current status of the job. Can be `queued`, `in_progress`, or `completed`.",
"type": "string",
"enum": [
"queued",
"in_progress",
"completed",
"waiting"
]
}
Variants§
Trait Implementations§
Source§impl Clone for WorkflowJobCompletedWorkflowJobStatus
impl Clone for WorkflowJobCompletedWorkflowJobStatus
Source§fn clone(&self) -> WorkflowJobCompletedWorkflowJobStatus
fn clone(&self) -> WorkflowJobCompletedWorkflowJobStatus
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 WorkflowJobCompletedWorkflowJobStatus
impl<'de> Deserialize<'de> for WorkflowJobCompletedWorkflowJobStatus
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<&WorkflowJobCompletedWorkflowJobStatus> for WorkflowJobCompletedWorkflowJobStatus
impl From<&WorkflowJobCompletedWorkflowJobStatus> for WorkflowJobCompletedWorkflowJobStatus
Source§fn from(value: &WorkflowJobCompletedWorkflowJobStatus) -> Self
fn from(value: &WorkflowJobCompletedWorkflowJobStatus) -> Self
Converts to this type from the input type.
Source§impl Ord for WorkflowJobCompletedWorkflowJobStatus
impl Ord for WorkflowJobCompletedWorkflowJobStatus
Source§fn cmp(&self, other: &WorkflowJobCompletedWorkflowJobStatus) -> Ordering
fn cmp(&self, other: &WorkflowJobCompletedWorkflowJobStatus) -> 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 WorkflowJobCompletedWorkflowJobStatus
impl PartialEq for WorkflowJobCompletedWorkflowJobStatus
Source§fn eq(&self, other: &WorkflowJobCompletedWorkflowJobStatus) -> bool
fn eq(&self, other: &WorkflowJobCompletedWorkflowJobStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for WorkflowJobCompletedWorkflowJobStatus
impl PartialOrd for WorkflowJobCompletedWorkflowJobStatus
impl Copy for WorkflowJobCompletedWorkflowJobStatus
impl Eq for WorkflowJobCompletedWorkflowJobStatus
impl StructuralPartialEq for WorkflowJobCompletedWorkflowJobStatus
Auto Trait Implementations§
impl Freeze for WorkflowJobCompletedWorkflowJobStatus
impl RefUnwindSafe for WorkflowJobCompletedWorkflowJobStatus
impl Send for WorkflowJobCompletedWorkflowJobStatus
impl Sync for WorkflowJobCompletedWorkflowJobStatus
impl Unpin for WorkflowJobCompletedWorkflowJobStatus
impl UnwindSafe for WorkflowJobCompletedWorkflowJobStatus
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