Struct aws_sdk_connect::types::builders::CustomerBuilder
source · #[non_exhaustive]pub struct CustomerBuilder { /* private fields */ }
Expand description
A builder for Customer
.
Implementations§
source§impl CustomerBuilder
impl CustomerBuilder
sourcepub fn device_info(self, input: DeviceInfo) -> Self
pub fn device_info(self, input: DeviceInfo) -> Self
Information regarding Customer’s device.
sourcepub fn set_device_info(self, input: Option<DeviceInfo>) -> Self
pub fn set_device_info(self, input: Option<DeviceInfo>) -> Self
Information regarding Customer’s device.
sourcepub fn get_device_info(&self) -> &Option<DeviceInfo>
pub fn get_device_info(&self) -> &Option<DeviceInfo>
Information regarding Customer’s device.
sourcepub fn capabilities(self, input: ParticipantCapabilities) -> Self
pub fn capabilities(self, input: ParticipantCapabilities) -> Self
The configuration for the allowed capabilities for participants present over the call.
sourcepub fn set_capabilities(self, input: Option<ParticipantCapabilities>) -> Self
pub fn set_capabilities(self, input: Option<ParticipantCapabilities>) -> Self
The configuration for the allowed capabilities for participants present over the call.
sourcepub fn get_capabilities(&self) -> &Option<ParticipantCapabilities>
pub fn get_capabilities(&self) -> &Option<ParticipantCapabilities>
The configuration for the allowed capabilities for participants present over the call.
Trait Implementations§
source§impl Clone for CustomerBuilder
impl Clone for CustomerBuilder
source§fn clone(&self) -> CustomerBuilder
fn clone(&self) -> CustomerBuilder
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 CustomerBuilder
impl Debug for CustomerBuilder
source§impl Default for CustomerBuilder
impl Default for CustomerBuilder
source§fn default() -> CustomerBuilder
fn default() -> CustomerBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CustomerBuilder
impl PartialEq for CustomerBuilder
source§fn eq(&self, other: &CustomerBuilder) -> bool
fn eq(&self, other: &CustomerBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CustomerBuilder
Auto Trait Implementations§
impl Freeze for CustomerBuilder
impl RefUnwindSafe for CustomerBuilder
impl Send for CustomerBuilder
impl Sync for CustomerBuilder
impl Unpin for CustomerBuilder
impl UnwindSafe for CustomerBuilder
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.