Struct azure_devops_rust_api::release::models::DeploymentAttempt
source · pub struct DeploymentAttempt {Show 16 fields
pub attempt: Option<i32>,
pub deployment_id: Option<i32>,
pub has_started: Option<bool>,
pub id: Option<i32>,
pub issues: Vec<Issue>,
pub last_modified_by: Option<IdentityRef>,
pub last_modified_on: Option<OffsetDateTime>,
pub operation_status: Option<OperationStatus>,
pub post_deployment_gates: Option<ReleaseGates>,
pub pre_deployment_gates: Option<ReleaseGates>,
pub queued_on: Option<OffsetDateTime>,
pub reason: Option<Reason>,
pub release_deploy_phases: Vec<ReleaseDeployPhase>,
pub requested_by: Option<IdentityRef>,
pub requested_for: Option<IdentityRef>,
pub status: Option<Status>,
}
Expand description
Fields§
§attempt: Option<i32>
Deployment attempt.
deployment_id: Option<i32>
ID of the deployment.
has_started: Option<bool>
Specifies whether deployment has started or not.
id: Option<i32>
ID of deployment.
issues: Vec<Issue>
All the issues related to the deployment.
last_modified_by: Option<IdentityRef>
§last_modified_on: Option<OffsetDateTime>
Time when this deployment last modified.
operation_status: Option<OperationStatus>
Deployment operation status.
post_deployment_gates: Option<ReleaseGates>
§pre_deployment_gates: Option<ReleaseGates>
§queued_on: Option<OffsetDateTime>
When this deployment queued on.
reason: Option<Reason>
Reason for the deployment.
release_deploy_phases: Vec<ReleaseDeployPhase>
List of release deployphases executed in this deployment.
requested_by: Option<IdentityRef>
§requested_for: Option<IdentityRef>
§status: Option<Status>
status of the deployment.
Implementations§
Trait Implementations§
source§impl Clone for DeploymentAttempt
impl Clone for DeploymentAttempt
source§fn clone(&self) -> DeploymentAttempt
fn clone(&self) -> DeploymentAttempt
Returns a copy 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 DeploymentAttempt
impl Debug for DeploymentAttempt
source§impl Default for DeploymentAttempt
impl Default for DeploymentAttempt
source§fn default() -> DeploymentAttempt
fn default() -> DeploymentAttempt
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DeploymentAttempt
impl<'de> Deserialize<'de> for DeploymentAttempt
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 DeploymentAttempt
impl PartialEq for DeploymentAttempt
source§fn eq(&self, other: &DeploymentAttempt) -> bool
fn eq(&self, other: &DeploymentAttempt) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DeploymentAttempt
impl Serialize for DeploymentAttempt
impl StructuralPartialEq for DeploymentAttempt
Auto Trait Implementations§
impl RefUnwindSafe for DeploymentAttempt
impl Send for DeploymentAttempt
impl Sync for DeploymentAttempt
impl Unpin for DeploymentAttempt
impl UnwindSafe for DeploymentAttempt
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