[][src]Struct rusoto_chime::User

pub struct User {
    pub account_id: Option<String>,
    pub display_name: Option<String>,
    pub invited_on: Option<f64>,
    pub license_type: Option<String>,
    pub personal_pin: Option<String>,
    pub primary_email: Option<String>,
    pub primary_provisioned_number: Option<String>,
    pub registered_on: Option<f64>,
    pub user_id: String,
    pub user_invitation_status: Option<String>,
    pub user_registration_status: Option<String>,
}

The user on the Amazon Chime account.

Fields

account_id: Option<String>

The Amazon Chime account ID.

display_name: Option<String>

The display name of the user.

invited_on: Option<f64>

Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.

license_type: Option<String>

The license type for the user.

personal_pin: Option<String>

The user's personal meeting PIN.

primary_email: Option<String>

The primary email address of the user.

primary_provisioned_number: Option<String>

The primary phone number associated with the user.

registered_on: Option<f64>

Date and time when the user is registered, in ISO 8601 format.

user_id: String

The user ID.

user_invitation_status: Option<String>

The user invite status.

user_registration_status: Option<String>

The user registration status.

Trait Implementations

impl Clone for User[src]

impl Default for User[src]

impl PartialEq<User> for User[src]

impl Debug for User[src]

impl StructuralPartialEq for User[src]

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

Auto Trait Implementations

impl Send for User

impl Sync for User

impl Unpin for User

impl UnwindSafe for User

impl RefUnwindSafe for User

Blanket Implementations

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self