#[non_exhaustive]pub struct PipelineSummaryBuilder { /* private fields */ }
Expand description
A builder for PipelineSummary
.
Implementations§
source§impl PipelineSummaryBuilder
impl PipelineSummaryBuilder
sourcepub fn set_version(self, input: Option<i32>) -> Self
pub fn set_version(self, input: Option<i32>) -> Self
The version number of the pipeline.
sourcepub fn get_version(&self) -> &Option<i32>
pub fn get_version(&self) -> &Option<i32>
The version number of the pipeline.
sourcepub fn created(self, input: DateTime) -> Self
pub fn created(self, input: DateTime) -> Self
The date and time the pipeline was created, in timestamp format.
sourcepub fn set_created(self, input: Option<DateTime>) -> Self
pub fn set_created(self, input: Option<DateTime>) -> Self
The date and time the pipeline was created, in timestamp format.
sourcepub fn get_created(&self) -> &Option<DateTime>
pub fn get_created(&self) -> &Option<DateTime>
The date and time the pipeline was created, in timestamp format.
sourcepub fn updated(self, input: DateTime) -> Self
pub fn updated(self, input: DateTime) -> Self
The date and time of the last update to the pipeline, in timestamp format.
sourcepub fn set_updated(self, input: Option<DateTime>) -> Self
pub fn set_updated(self, input: Option<DateTime>) -> Self
The date and time of the last update to the pipeline, in timestamp format.
sourcepub fn get_updated(&self) -> &Option<DateTime>
pub fn get_updated(&self) -> &Option<DateTime>
The date and time of the last update to the pipeline, in timestamp format.
sourcepub fn build(self) -> PipelineSummary
pub fn build(self) -> PipelineSummary
Consumes the builder and constructs a PipelineSummary
.
Trait Implementations§
source§impl Clone for PipelineSummaryBuilder
impl Clone for PipelineSummaryBuilder
source§fn clone(&self) -> PipelineSummaryBuilder
fn clone(&self) -> PipelineSummaryBuilder
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 PipelineSummaryBuilder
impl Debug for PipelineSummaryBuilder
source§impl Default for PipelineSummaryBuilder
impl Default for PipelineSummaryBuilder
source§fn default() -> PipelineSummaryBuilder
fn default() -> PipelineSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PipelineSummaryBuilder> for PipelineSummaryBuilder
impl PartialEq<PipelineSummaryBuilder> for PipelineSummaryBuilder
source§fn eq(&self, other: &PipelineSummaryBuilder) -> bool
fn eq(&self, other: &PipelineSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PipelineSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for PipelineSummaryBuilder
impl Send for PipelineSummaryBuilder
impl Sync for PipelineSummaryBuilder
impl Unpin for PipelineSummaryBuilder
impl UnwindSafe for PipelineSummaryBuilder
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