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