Struct rusoto_cognito_idp::EventContextDataType[][src]

pub struct EventContextDataType {
    pub city: Option<String>,
    pub country: Option<String>,
    pub device_name: Option<String>,
    pub ip_address: Option<String>,
    pub timezone: Option<String>,
}

Specifies the user context data captured at the time of an event request.

Fields

The user's city.

The user's country.

The user's device name.

The user's IP address.

The user's time zone.

Trait Implementations

impl Default for EventContextDataType
[src]

Returns the "default value" for a type. Read more

impl Debug for EventContextDataType
[src]

Formats the value using the given formatter. Read more

impl Clone for EventContextDataType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EventContextDataType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations