pub struct DeleteDeploymentRequest {
pub action: DeleteDeploymentAction,
}Expand description
DeleteDeploymentRequest
JSON schema
{
"type": "object",
"required": [
"action"
],
"properties": {
"action": {
"$ref": "#/components/schemas/DeleteDeploymentAction"
}
}
}Fields§
§action: DeleteDeploymentActionImplementations§
Source§impl DeleteDeploymentRequest
impl DeleteDeploymentRequest
pub fn builder() -> DeleteDeploymentRequest
Trait Implementations§
Source§impl Clone for DeleteDeploymentRequest
impl Clone for DeleteDeploymentRequest
Source§fn clone(&self) -> DeleteDeploymentRequest
fn clone(&self) -> DeleteDeploymentRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeleteDeploymentRequest
impl Debug for DeleteDeploymentRequest
Source§impl<'de> Deserialize<'de> for DeleteDeploymentRequest
impl<'de> Deserialize<'de> for DeleteDeploymentRequest
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<&DeleteDeploymentRequest> for DeleteDeploymentRequest
impl From<&DeleteDeploymentRequest> for DeleteDeploymentRequest
Source§fn from(value: &DeleteDeploymentRequest) -> Self
fn from(value: &DeleteDeploymentRequest) -> Self
Converts to this type from the input type.
Source§impl From<DeleteDeploymentRequest> for DeleteDeploymentRequest
impl From<DeleteDeploymentRequest> for DeleteDeploymentRequest
Source§fn from(value: DeleteDeploymentRequest) -> Self
fn from(value: DeleteDeploymentRequest) -> Self
Converts to this type from the input type.
Source§impl Serialize for DeleteDeploymentRequest
impl Serialize for DeleteDeploymentRequest
Source§impl TryFrom<DeleteDeploymentRequest> for DeleteDeploymentRequest
impl TryFrom<DeleteDeploymentRequest> for DeleteDeploymentRequest
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: DeleteDeploymentRequest) -> Result<Self, ConversionError>
fn try_from(value: DeleteDeploymentRequest) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DeleteDeploymentRequest
impl RefUnwindSafe for DeleteDeploymentRequest
impl Send for DeleteDeploymentRequest
impl Sync for DeleteDeploymentRequest
impl Unpin for DeleteDeploymentRequest
impl UnsafeUnpin for DeleteDeploymentRequest
impl UnwindSafe for DeleteDeploymentRequest
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