pub struct RetryStageExecutionOutput {
pub pipeline_execution_id: Option<String>,
}
Expand description
Represents the output of a RetryStageExecution
action.
Fields§
§pipeline_execution_id: Option<String>
The ID of the current workflow execution in the failed stage.
Trait Implementations§
Source§impl Clone for RetryStageExecutionOutput
impl Clone for RetryStageExecutionOutput
Source§fn clone(&self) -> RetryStageExecutionOutput
fn clone(&self) -> RetryStageExecutionOutput
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 RetryStageExecutionOutput
impl Debug for RetryStageExecutionOutput
Source§impl Default for RetryStageExecutionOutput
impl Default for RetryStageExecutionOutput
Source§fn default() -> RetryStageExecutionOutput
fn default() -> RetryStageExecutionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetryStageExecutionOutput
impl<'de> Deserialize<'de> for RetryStageExecutionOutput
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
impl StructuralPartialEq for RetryStageExecutionOutput
Auto Trait Implementations§
impl Freeze for RetryStageExecutionOutput
impl RefUnwindSafe for RetryStageExecutionOutput
impl Send for RetryStageExecutionOutput
impl Sync for RetryStageExecutionOutput
impl Unpin for RetryStageExecutionOutput
impl UnwindSafe for RetryStageExecutionOutput
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