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