Struct aws_sdk_connect::types::AllowedCapabilities
source · #[non_exhaustive]pub struct AllowedCapabilities {
pub customer: Option<ParticipantCapabilities>,
pub agent: Option<ParticipantCapabilities>,
}
Expand description
Information about the capabilities enabled for participants of the contact.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.customer: Option<ParticipantCapabilities>
Information about the customer's video sharing capabilities.
agent: Option<ParticipantCapabilities>
Information about the agent's video sharing capabilities.
Implementations§
source§impl AllowedCapabilities
impl AllowedCapabilities
sourcepub fn customer(&self) -> Option<&ParticipantCapabilities>
pub fn customer(&self) -> Option<&ParticipantCapabilities>
Information about the customer's video sharing capabilities.
sourcepub fn agent(&self) -> Option<&ParticipantCapabilities>
pub fn agent(&self) -> Option<&ParticipantCapabilities>
Information about the agent's video sharing capabilities.
source§impl AllowedCapabilities
impl AllowedCapabilities
sourcepub fn builder() -> AllowedCapabilitiesBuilder
pub fn builder() -> AllowedCapabilitiesBuilder
Creates a new builder-style object to manufacture AllowedCapabilities
.
Trait Implementations§
source§impl Clone for AllowedCapabilities
impl Clone for AllowedCapabilities
source§fn clone(&self) -> AllowedCapabilities
fn clone(&self) -> AllowedCapabilities
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 AllowedCapabilities
impl Debug for AllowedCapabilities
source§impl PartialEq for AllowedCapabilities
impl PartialEq for AllowedCapabilities
source§fn eq(&self, other: &AllowedCapabilities) -> bool
fn eq(&self, other: &AllowedCapabilities) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AllowedCapabilities
Auto Trait Implementations§
impl RefUnwindSafe for AllowedCapabilities
impl Send for AllowedCapabilities
impl Sync for AllowedCapabilities
impl Unpin for AllowedCapabilities
impl UnwindSafe for AllowedCapabilities
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>
Creates a shared type from an unshared type.