#[non_exhaustive]pub struct StartTriggerOutputBuilder { /* private fields */ }
Expand description
A builder for StartTriggerOutput
.
Implementations§
source§impl StartTriggerOutputBuilder
impl StartTriggerOutputBuilder
sourcepub fn build(self) -> StartTriggerOutput
pub fn build(self) -> StartTriggerOutput
Consumes the builder and constructs a StartTriggerOutput
.
Trait Implementations§
source§impl Clone for StartTriggerOutputBuilder
impl Clone for StartTriggerOutputBuilder
source§fn clone(&self) -> StartTriggerOutputBuilder
fn clone(&self) -> StartTriggerOutputBuilder
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 StartTriggerOutputBuilder
impl Debug for StartTriggerOutputBuilder
source§impl Default for StartTriggerOutputBuilder
impl Default for StartTriggerOutputBuilder
source§fn default() -> StartTriggerOutputBuilder
fn default() -> StartTriggerOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StartTriggerOutputBuilder
impl PartialEq for StartTriggerOutputBuilder
source§fn eq(&self, other: &StartTriggerOutputBuilder) -> bool
fn eq(&self, other: &StartTriggerOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartTriggerOutputBuilder
Auto Trait Implementations§
impl Freeze for StartTriggerOutputBuilder
impl RefUnwindSafe for StartTriggerOutputBuilder
impl Send for StartTriggerOutputBuilder
impl Sync for StartTriggerOutputBuilder
impl Unpin for StartTriggerOutputBuilder
impl UnwindSafe for StartTriggerOutputBuilder
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> 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.