#[non_exhaustive]pub struct FlowTemplateSummaryBuilder { /* private fields */ }Expand description
A builder for FlowTemplateSummary.
Implementations§
source§impl FlowTemplateSummaryBuilder
impl FlowTemplateSummaryBuilder
sourcepub fn revision_number(self, input: i64) -> Self
pub fn revision_number(self, input: i64) -> Self
The revision number of the workflow.
sourcepub fn set_revision_number(self, input: Option<i64>) -> Self
pub fn set_revision_number(self, input: Option<i64>) -> Self
The revision number of the workflow.
sourcepub fn get_revision_number(&self) -> &Option<i64>
pub fn get_revision_number(&self) -> &Option<i64>
The revision number of the workflow.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The date when the workflow was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The date when the workflow was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The date when the workflow was created.
sourcepub fn build(self) -> FlowTemplateSummary
pub fn build(self) -> FlowTemplateSummary
Consumes the builder and constructs a FlowTemplateSummary.
Trait Implementations§
source§impl Clone for FlowTemplateSummaryBuilder
impl Clone for FlowTemplateSummaryBuilder
source§fn clone(&self) -> FlowTemplateSummaryBuilder
fn clone(&self) -> FlowTemplateSummaryBuilder
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 FlowTemplateSummaryBuilder
impl Debug for FlowTemplateSummaryBuilder
source§impl Default for FlowTemplateSummaryBuilder
impl Default for FlowTemplateSummaryBuilder
source§fn default() -> FlowTemplateSummaryBuilder
fn default() -> FlowTemplateSummaryBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for FlowTemplateSummaryBuilder
Auto Trait Implementations§
impl Freeze for FlowTemplateSummaryBuilder
impl RefUnwindSafe for FlowTemplateSummaryBuilder
impl Send for FlowTemplateSummaryBuilder
impl Sync for FlowTemplateSummaryBuilder
impl Unpin for FlowTemplateSummaryBuilder
impl UnwindSafe for FlowTemplateSummaryBuilder
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.