#[non_exhaustive]pub struct InviteUsersOutputBuilder { /* private fields */ }Expand description
A builder for InviteUsersOutput.
Implementations§
source§impl InviteUsersOutputBuilder
impl InviteUsersOutputBuilder
sourcepub fn invites(self, input: Invite) -> Self
pub fn invites(self, input: Invite) -> Self
Appends an item to invites.
To override the contents of this collection use set_invites.
The email invitation details.
sourcepub fn set_invites(self, input: Option<Vec<Invite>>) -> Self
pub fn set_invites(self, input: Option<Vec<Invite>>) -> Self
The email invitation details.
sourcepub fn get_invites(&self) -> &Option<Vec<Invite>>
pub fn get_invites(&self) -> &Option<Vec<Invite>>
The email invitation details.
sourcepub fn build(self) -> InviteUsersOutput
pub fn build(self) -> InviteUsersOutput
Consumes the builder and constructs a InviteUsersOutput.
Trait Implementations§
source§impl Clone for InviteUsersOutputBuilder
impl Clone for InviteUsersOutputBuilder
source§fn clone(&self) -> InviteUsersOutputBuilder
fn clone(&self) -> InviteUsersOutputBuilder
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 InviteUsersOutputBuilder
impl Debug for InviteUsersOutputBuilder
source§impl Default for InviteUsersOutputBuilder
impl Default for InviteUsersOutputBuilder
source§fn default() -> InviteUsersOutputBuilder
fn default() -> InviteUsersOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InviteUsersOutputBuilder
impl PartialEq for InviteUsersOutputBuilder
impl StructuralPartialEq for InviteUsersOutputBuilder
Auto Trait Implementations§
impl Freeze for InviteUsersOutputBuilder
impl RefUnwindSafe for InviteUsersOutputBuilder
impl Send for InviteUsersOutputBuilder
impl Sync for InviteUsersOutputBuilder
impl Unpin for InviteUsersOutputBuilder
impl UnwindSafe for InviteUsersOutputBuilder
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.