pub struct StopDeploymentOutput {
pub status: Option<String>,
pub status_message: Option<String>,
}
Expand description
Represents the output of a StopDeployment
operation.
Fields§
§status: Option<String>
The status of the stop deployment operation:
-
Pending: The stop operation is pending.
-
Succeeded: The stop operation was successful.
status_message: Option<String>
An accompanying status message.
Trait Implementations§
Source§impl Clone for StopDeploymentOutput
impl Clone for StopDeploymentOutput
Source§fn clone(&self) -> StopDeploymentOutput
fn clone(&self) -> StopDeploymentOutput
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 StopDeploymentOutput
impl Debug for StopDeploymentOutput
Source§impl Default for StopDeploymentOutput
impl Default for StopDeploymentOutput
Source§fn default() -> StopDeploymentOutput
fn default() -> StopDeploymentOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StopDeploymentOutput
impl<'de> Deserialize<'de> for StopDeploymentOutput
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 PartialEq for StopDeploymentOutput
impl PartialEq for StopDeploymentOutput
impl StructuralPartialEq for StopDeploymentOutput
Auto Trait Implementations§
impl Freeze for StopDeploymentOutput
impl RefUnwindSafe for StopDeploymentOutput
impl Send for StopDeploymentOutput
impl Sync for StopDeploymentOutput
impl Unpin for StopDeploymentOutput
impl UnwindSafe for StopDeploymentOutput
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