pub struct ExecutionDetails {
pub external_execution_id: Option<String>,
pub percent_complete: Option<i64>,
pub summary: Option<String>,
}
Expand description
The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.
Fields§
§external_execution_id: Option<String>
The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.
percent_complete: Option<i64>
The percentage of work completed on the action, represented on a scale of 0 to 100 percent.
summary: Option<String>
The summary of the current status of the actions.
Trait Implementations§
Source§impl Clone for ExecutionDetails
impl Clone for ExecutionDetails
Source§fn clone(&self) -> ExecutionDetails
fn clone(&self) -> ExecutionDetails
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 ExecutionDetails
impl Debug for ExecutionDetails
Source§impl Default for ExecutionDetails
impl Default for ExecutionDetails
Source§fn default() -> ExecutionDetails
fn default() -> ExecutionDetails
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExecutionDetails
impl PartialEq for ExecutionDetails
Source§impl Serialize for ExecutionDetails
impl Serialize for ExecutionDetails
impl StructuralPartialEq for ExecutionDetails
Auto Trait Implementations§
impl Freeze for ExecutionDetails
impl RefUnwindSafe for ExecutionDetails
impl Send for ExecutionDetails
impl Sync for ExecutionDetails
impl Unpin for ExecutionDetails
impl UnwindSafe for ExecutionDetails
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