[][src]Struct rusoto_chime::PhoneNumber

pub struct PhoneNumber {
    pub associations: Option<Vec<PhoneNumberAssociation>>,
    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.

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 PartialEq<PhoneNumber> for PhoneNumber[src]

impl Default for PhoneNumber[src]

impl Clone for PhoneNumber[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PhoneNumber[src]

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

Auto Trait Implementations

impl Send for PhoneNumber

impl Sync for PhoneNumber

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self