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