#[non_exhaustive]pub struct InviteMembersOutputBuilder { /* private fields */ }
Expand description
A builder for InviteMembersOutput
.
Implementations§
source§impl InviteMembersOutputBuilder
impl InviteMembersOutputBuilder
sourcepub fn unprocessed_accounts(self, input: Result) -> Self
pub fn unprocessed_accounts(self, input: Result) -> Self
Appends an item to unprocessed_accounts
.
To override the contents of this collection use set_unprocessed_accounts
.
The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.
sourcepub fn set_unprocessed_accounts(self, input: Option<Vec<Result>>) -> Self
pub fn set_unprocessed_accounts(self, input: Option<Vec<Result>>) -> Self
The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.
sourcepub fn get_unprocessed_accounts(&self) -> &Option<Vec<Result>>
pub fn get_unprocessed_accounts(&self) -> &Option<Vec<Result>>
The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.
sourcepub fn build(self) -> InviteMembersOutput
pub fn build(self) -> InviteMembersOutput
Consumes the builder and constructs a InviteMembersOutput
.
Trait Implementations§
source§impl Clone for InviteMembersOutputBuilder
impl Clone for InviteMembersOutputBuilder
source§fn clone(&self) -> InviteMembersOutputBuilder
fn clone(&self) -> InviteMembersOutputBuilder
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 InviteMembersOutputBuilder
impl Debug for InviteMembersOutputBuilder
source§impl Default for InviteMembersOutputBuilder
impl Default for InviteMembersOutputBuilder
source§fn default() -> InviteMembersOutputBuilder
fn default() -> InviteMembersOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InviteMembersOutputBuilder
impl PartialEq for InviteMembersOutputBuilder
source§fn eq(&self, other: &InviteMembersOutputBuilder) -> bool
fn eq(&self, other: &InviteMembersOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InviteMembersOutputBuilder
Auto Trait Implementations§
impl Freeze for InviteMembersOutputBuilder
impl RefUnwindSafe for InviteMembersOutputBuilder
impl Send for InviteMembersOutputBuilder
impl Sync for InviteMembersOutputBuilder
impl Unpin for InviteMembersOutputBuilder
impl UnwindSafe for InviteMembersOutputBuilder
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.