pub struct GetPipelineOutput {
pub metadata: Option<PipelineMetadata>,
pub pipeline: Option<PipelineDeclaration>,
}
Expand description
Represents the output of a GetPipeline
action.
Fields§
§metadata: Option<PipelineMetadata>
Represents the pipeline metadata information returned as part of the output of a GetPipeline
action.
pipeline: Option<PipelineDeclaration>
Represents the structure of actions and stages to be performed in the pipeline.
Trait Implementations§
Source§impl Clone for GetPipelineOutput
impl Clone for GetPipelineOutput
Source§fn clone(&self) -> GetPipelineOutput
fn clone(&self) -> GetPipelineOutput
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 GetPipelineOutput
impl Debug for GetPipelineOutput
Source§impl Default for GetPipelineOutput
impl Default for GetPipelineOutput
Source§fn default() -> GetPipelineOutput
fn default() -> GetPipelineOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPipelineOutput
impl<'de> Deserialize<'de> for GetPipelineOutput
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 GetPipelineOutput
impl PartialEq for GetPipelineOutput
impl StructuralPartialEq for GetPipelineOutput
Auto Trait Implementations§
impl Freeze for GetPipelineOutput
impl RefUnwindSafe for GetPipelineOutput
impl Send for GetPipelineOutput
impl Sync for GetPipelineOutput
impl Unpin for GetPipelineOutput
impl UnwindSafe for GetPipelineOutput
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