pub struct StartPipelineExecutionOutput {
pub pipeline_execution_id: Option<String>,
}
Expand description
Represents the output of a StartPipelineExecution
action.
Fields§
§pipeline_execution_id: Option<String>
The unique system-generated ID of the pipeline execution that was started.
Trait Implementations§
Source§impl Clone for StartPipelineExecutionOutput
impl Clone for StartPipelineExecutionOutput
Source§fn clone(&self) -> StartPipelineExecutionOutput
fn clone(&self) -> StartPipelineExecutionOutput
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 StartPipelineExecutionOutput
impl Debug for StartPipelineExecutionOutput
Source§impl Default for StartPipelineExecutionOutput
impl Default for StartPipelineExecutionOutput
Source§fn default() -> StartPipelineExecutionOutput
fn default() -> StartPipelineExecutionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartPipelineExecutionOutput
impl<'de> Deserialize<'de> for StartPipelineExecutionOutput
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 StartPipelineExecutionOutput
impl PartialEq for StartPipelineExecutionOutput
Source§fn eq(&self, other: &StartPipelineExecutionOutput) -> bool
fn eq(&self, other: &StartPipelineExecutionOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StartPipelineExecutionOutput
Auto Trait Implementations§
impl Freeze for StartPipelineExecutionOutput
impl RefUnwindSafe for StartPipelineExecutionOutput
impl Send for StartPipelineExecutionOutput
impl Sync for StartPipelineExecutionOutput
impl Unpin for StartPipelineExecutionOutput
impl UnwindSafe for StartPipelineExecutionOutput
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