pub struct StageExecution {
pub pipeline_execution_id: String,
pub status: String,
}
Expand description
Represents information about the run of a stage.
Fields§
§pipeline_execution_id: String
The ID of the pipeline execution associated with the stage.
status: String
The status of the stage, or for a completed stage, the last status of the stage.
Trait Implementations§
Source§impl Clone for StageExecution
impl Clone for StageExecution
Source§fn clone(&self) -> StageExecution
fn clone(&self) -> StageExecution
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 StageExecution
impl Debug for StageExecution
Source§impl Default for StageExecution
impl Default for StageExecution
Source§fn default() -> StageExecution
fn default() -> StageExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StageExecution
impl<'de> Deserialize<'de> for StageExecution
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 StageExecution
impl PartialEq for StageExecution
impl StructuralPartialEq for StageExecution
Auto Trait Implementations§
impl Freeze for StageExecution
impl RefUnwindSafe for StageExecution
impl Send for StageExecution
impl Sync for StageExecution
impl Unpin for StageExecution
impl UnwindSafe for StageExecution
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