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