#[non_exhaustive]pub struct SendInvitesInputBuilder { /* private fields */ }Expand description
A builder for SendInvitesInput.
Implementations§
source§impl SendInvitesInputBuilder
impl SendInvitesInputBuilder
sourcepub fn space_id(self, input: impl Into<String>) -> Self
pub fn space_id(self, input: impl Into<String>) -> Self
The ID of the private re:Post.
This field is required.sourcepub fn set_space_id(self, input: Option<String>) -> Self
pub fn set_space_id(self, input: Option<String>) -> Self
The ID of the private re:Post.
sourcepub fn get_space_id(&self) -> &Option<String>
pub fn get_space_id(&self) -> &Option<String>
The ID of the private re:Post.
sourcepub fn accessor_ids(self, input: impl Into<String>) -> Self
pub fn accessor_ids(self, input: impl Into<String>) -> Self
Appends an item to accessor_ids.
To override the contents of this collection use set_accessor_ids.
The array of identifiers for the users and groups.
sourcepub fn set_accessor_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_accessor_ids(self, input: Option<Vec<String>>) -> Self
The array of identifiers for the users and groups.
sourcepub fn get_accessor_ids(&self) -> &Option<Vec<String>>
pub fn get_accessor_ids(&self) -> &Option<Vec<String>>
The array of identifiers for the users and groups.
sourcepub fn title(self, input: impl Into<String>) -> Self
pub fn title(self, input: impl Into<String>) -> Self
The title of the invite.
This field is required.sourcepub fn body(self, input: impl Into<String>) -> Self
pub fn body(self, input: impl Into<String>) -> Self
The body of the invite.
This field is required.sourcepub fn build(self) -> Result<SendInvitesInput, BuildError>
pub fn build(self) -> Result<SendInvitesInput, BuildError>
Consumes the builder and constructs a SendInvitesInput.
source§impl SendInvitesInputBuilder
impl SendInvitesInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<SendInvitesOutput, SdkError<SendInvitesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<SendInvitesOutput, SdkError<SendInvitesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for SendInvitesInputBuilder
impl Clone for SendInvitesInputBuilder
source§fn clone(&self) -> SendInvitesInputBuilder
fn clone(&self) -> SendInvitesInputBuilder
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 SendInvitesInputBuilder
impl Debug for SendInvitesInputBuilder
source§impl Default for SendInvitesInputBuilder
impl Default for SendInvitesInputBuilder
source§fn default() -> SendInvitesInputBuilder
fn default() -> SendInvitesInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SendInvitesInputBuilder
impl PartialEq for SendInvitesInputBuilder
impl StructuralPartialEq for SendInvitesInputBuilder
Auto Trait Implementations§
impl Freeze for SendInvitesInputBuilder
impl RefUnwindSafe for SendInvitesInputBuilder
impl Send for SendInvitesInputBuilder
impl Sync for SendInvitesInputBuilder
impl Unpin for SendInvitesInputBuilder
impl UnwindSafe for SendInvitesInputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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.