pub struct LastDeploymentInfo {
pub create_time: Option<f64>,
pub deployment_id: Option<String>,
pub end_time: Option<f64>,
pub status: Option<String>,
}
Expand description
Information about the most recent attempted or successful deployment to a deployment group.
Fields§
§create_time: Option<f64>
A timestamp that indicates when the most recent deployment to the deployment group started.
deployment_id: Option<String>
The unique ID of a deployment.
end_time: Option<f64>
A timestamp that indicates when the most recent deployment to the deployment group was complete.
status: Option<String>
The status of the most recent deployment.
Trait Implementations§
Source§impl Clone for LastDeploymentInfo
impl Clone for LastDeploymentInfo
Source§fn clone(&self) -> LastDeploymentInfo
fn clone(&self) -> LastDeploymentInfo
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 LastDeploymentInfo
impl Debug for LastDeploymentInfo
Source§impl Default for LastDeploymentInfo
impl Default for LastDeploymentInfo
Source§fn default() -> LastDeploymentInfo
fn default() -> LastDeploymentInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LastDeploymentInfo
impl<'de> Deserialize<'de> for LastDeploymentInfo
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 LastDeploymentInfo
impl PartialEq for LastDeploymentInfo
impl StructuralPartialEq for LastDeploymentInfo
Auto Trait Implementations§
impl Freeze for LastDeploymentInfo
impl RefUnwindSafe for LastDeploymentInfo
impl Send for LastDeploymentInfo
impl Sync for LastDeploymentInfo
impl Unpin for LastDeploymentInfo
impl UnwindSafe for LastDeploymentInfo
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