[][src]Struct rusoto_chime::PhoneNumber

pub struct PhoneNumber {
    pub associations: Option<Vec<PhoneNumberAssociation>>,
    pub calling_name: Option<String>,
    pub calling_name_status: Option<String>,
    pub capabilities: Option<PhoneNumberCapabilities>,
    pub created_timestamp: Option<f64>,
    pub deletion_timestamp: Option<f64>,
    pub e164_phone_number: Option<String>,
    pub phone_number_id: Option<String>,
    pub product_type: Option<String>,
    pub status: Option<String>,
    pub type_: Option<String>,
    pub updated_timestamp: Option<f64>,
}

A phone number used for Amazon Chime Business Calling or an Amazon Chime Voice Connector.

Fields

associations: Option<Vec<PhoneNumberAssociation>>

The phone number associations.

calling_name: Option<String>

The outbound calling name associated with the phone number.

calling_name_status: Option<String>

The outbound calling name status.

capabilities: Option<PhoneNumberCapabilities>

The phone number capabilities.

created_timestamp: Option<f64>

The phone number creation timestamp, in ISO 8601 format.

deletion_timestamp: Option<f64>

The deleted phone number timestamp, in ISO 8601 format.

e164_phone_number: Option<String>

The phone number, in E.164 format.

phone_number_id: Option<String>

The phone number ID.

product_type: Option<String>

The phone number product type.

status: Option<String>

The phone number status.

type_: Option<String>

The phone number type.

updated_timestamp: Option<f64>

The updated phone number timestamp, in ISO 8601 format.

Trait Implementations

impl Clone for PhoneNumber[src]

impl Debug for PhoneNumber[src]

impl Default for PhoneNumber[src]

impl<'de> Deserialize<'de> for PhoneNumber[src]

impl PartialEq<PhoneNumber> for PhoneNumber[src]

impl StructuralPartialEq for PhoneNumber[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.