#[non_exhaustive]pub struct GetPipelineOutputBuilder { /* private fields */ }Expand description
A builder for GetPipelineOutput.
Implementations§
source§impl GetPipelineOutputBuilder
impl GetPipelineOutputBuilder
sourcepub fn pipeline(self, input: Pipeline) -> Self
pub fn pipeline(self, input: Pipeline) -> Self
Detailed information about the requested pipeline.
sourcepub fn set_pipeline(self, input: Option<Pipeline>) -> Self
pub fn set_pipeline(self, input: Option<Pipeline>) -> Self
Detailed information about the requested pipeline.
sourcepub fn get_pipeline(&self) -> &Option<Pipeline>
pub fn get_pipeline(&self) -> &Option<Pipeline>
Detailed information about the requested pipeline.
sourcepub fn build(self) -> GetPipelineOutput
pub fn build(self) -> GetPipelineOutput
Consumes the builder and constructs a GetPipelineOutput.
Trait Implementations§
source§impl Clone for GetPipelineOutputBuilder
impl Clone for GetPipelineOutputBuilder
source§fn clone(&self) -> GetPipelineOutputBuilder
fn clone(&self) -> GetPipelineOutputBuilder
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 GetPipelineOutputBuilder
impl Debug for GetPipelineOutputBuilder
source§impl Default for GetPipelineOutputBuilder
impl Default for GetPipelineOutputBuilder
source§fn default() -> GetPipelineOutputBuilder
fn default() -> GetPipelineOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetPipelineOutputBuilder
impl PartialEq for GetPipelineOutputBuilder
impl StructuralPartialEq for GetPipelineOutputBuilder
Auto Trait Implementations§
impl Freeze for GetPipelineOutputBuilder
impl RefUnwindSafe for GetPipelineOutputBuilder
impl Send for GetPipelineOutputBuilder
impl Sync for GetPipelineOutputBuilder
impl Unpin for GetPipelineOutputBuilder
impl UnwindSafe for GetPipelineOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.