Struct aws_sdk_chime::types::TelephonySettings
source · #[non_exhaustive]pub struct TelephonySettings {
pub inbound_calling: bool,
pub outbound_calling: bool,
pub sms: bool,
}
Expand description
Settings that allow management of telephony permissions for an Amazon Chime user, such as inbound and outbound calling and text messaging.
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.inbound_calling: bool
Allows or denies inbound calling.
outbound_calling: bool
Allows or denies outbound calling.
sms: bool
Allows or denies SMS messaging.
Implementations§
source§impl TelephonySettings
impl TelephonySettings
sourcepub fn inbound_calling(&self) -> bool
pub fn inbound_calling(&self) -> bool
Allows or denies inbound calling.
sourcepub fn outbound_calling(&self) -> bool
pub fn outbound_calling(&self) -> bool
Allows or denies outbound calling.
source§impl TelephonySettings
impl TelephonySettings
sourcepub fn builder() -> TelephonySettingsBuilder
pub fn builder() -> TelephonySettingsBuilder
Creates a new builder-style object to manufacture TelephonySettings
.
Trait Implementations§
source§impl Clone for TelephonySettings
impl Clone for TelephonySettings
source§fn clone(&self) -> TelephonySettings
fn clone(&self) -> TelephonySettings
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 TelephonySettings
impl Debug for TelephonySettings
source§impl PartialEq for TelephonySettings
impl PartialEq for TelephonySettings
source§fn eq(&self, other: &TelephonySettings) -> bool
fn eq(&self, other: &TelephonySettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TelephonySettings
Auto Trait Implementations§
impl RefUnwindSafe for TelephonySettings
impl Send for TelephonySettings
impl Sync for TelephonySettings
impl Unpin for TelephonySettings
impl UnwindSafe for TelephonySettings
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.