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