pub enum WorkflowJobQueuedAction {
Queued,
}
Expand description
WorkflowJobQueuedAction
JSON schema
{
"type": "string",
"enum": [
"queued"
]
}
Variants§
Queued
Trait Implementations§
Source§impl Clone for WorkflowJobQueuedAction
impl Clone for WorkflowJobQueuedAction
Source§fn clone(&self) -> WorkflowJobQueuedAction
fn clone(&self) -> WorkflowJobQueuedAction
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 Debug for WorkflowJobQueuedAction
impl Debug for WorkflowJobQueuedAction
Source§impl<'de> Deserialize<'de> for WorkflowJobQueuedAction
impl<'de> Deserialize<'de> for WorkflowJobQueuedAction
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<&WorkflowJobQueuedAction> for WorkflowJobQueuedAction
impl From<&WorkflowJobQueuedAction> for WorkflowJobQueuedAction
Source§fn from(value: &WorkflowJobQueuedAction) -> Self
fn from(value: &WorkflowJobQueuedAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for WorkflowJobQueuedAction
impl FromStr for WorkflowJobQueuedAction
Source§impl Hash for WorkflowJobQueuedAction
impl Hash for WorkflowJobQueuedAction
Source§impl Ord for WorkflowJobQueuedAction
impl Ord for WorkflowJobQueuedAction
Source§fn cmp(&self, other: &WorkflowJobQueuedAction) -> Ordering
fn cmp(&self, other: &WorkflowJobQueuedAction) -> 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 WorkflowJobQueuedAction
impl PartialEq for WorkflowJobQueuedAction
Source§impl PartialOrd for WorkflowJobQueuedAction
impl PartialOrd for WorkflowJobQueuedAction
Source§impl Serialize for WorkflowJobQueuedAction
impl Serialize for WorkflowJobQueuedAction
Source§impl ToString for WorkflowJobQueuedAction
impl ToString for WorkflowJobQueuedAction
Source§impl TryFrom<&String> for WorkflowJobQueuedAction
impl TryFrom<&String> for WorkflowJobQueuedAction
Source§impl TryFrom<&str> for WorkflowJobQueuedAction
impl TryFrom<&str> for WorkflowJobQueuedAction
Source§impl TryFrom<String> for WorkflowJobQueuedAction
impl TryFrom<String> for WorkflowJobQueuedAction
impl Copy for WorkflowJobQueuedAction
impl Eq for WorkflowJobQueuedAction
impl StructuralPartialEq for WorkflowJobQueuedAction
Auto Trait Implementations§
impl Freeze for WorkflowJobQueuedAction
impl RefUnwindSafe for WorkflowJobQueuedAction
impl Send for WorkflowJobQueuedAction
impl Sync for WorkflowJobQueuedAction
impl Unpin for WorkflowJobQueuedAction
impl UnwindSafe for WorkflowJobQueuedAction
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