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