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