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