pub struct RollbackInfo {
pub rollback_deployment_id: Option<String>,
pub rollback_message: Option<String>,
pub rollback_triggering_deployment_id: Option<String>,
}
Expand description
Information about a deployment rollback.
Fields§
§rollback_deployment_id: Option<String>
The ID of the deployment rollback.
rollback_message: Option<String>
Information that describes the status of a deployment rollback (for example, whether the deployment can't be rolled back, is in progress, failed, or succeeded).
rollback_triggering_deployment_id: Option<String>
The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.
Trait Implementations§
Source§impl Clone for RollbackInfo
impl Clone for RollbackInfo
Source§fn clone(&self) -> RollbackInfo
fn clone(&self) -> RollbackInfo
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 RollbackInfo
impl Debug for RollbackInfo
Source§impl Default for RollbackInfo
impl Default for RollbackInfo
Source§fn default() -> RollbackInfo
fn default() -> RollbackInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RollbackInfo
impl<'de> Deserialize<'de> for RollbackInfo
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 RollbackInfo
impl PartialEq for RollbackInfo
impl StructuralPartialEq for RollbackInfo
Auto Trait Implementations§
impl Freeze for RollbackInfo
impl RefUnwindSafe for RollbackInfo
impl Send for RollbackInfo
impl Sync for RollbackInfo
impl Unpin for RollbackInfo
impl UnwindSafe for RollbackInfo
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