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