[][src]Struct rusoto_route53::GeoLocationDetails

pub struct GeoLocationDetails {
    pub continent_code: Option<String>,
    pub continent_name: Option<String>,
    pub country_code: Option<String>,
    pub country_name: Option<String>,
    pub subdivision_code: Option<String>,
    pub subdivision_name: Option<String>,
}

A complex type that contains the codes and full continent, country, and subdivision names for the specified geolocation code.

Fields

continent_code: Option<String>

The two-letter code for the continent.

continent_name: Option<String>

The full name of the continent.

country_code: Option<String>

The two-letter code for the country.

country_name: Option<String>

The name of the country.

subdivision_code: Option<String>

The code for the subdivision. Route 53 currently supports only states in the United States.

subdivision_name: Option<String>

The full name of the subdivision. Route 53 currently supports only states in the United States.

Trait Implementations

impl Clone for GeoLocationDetails[src]

impl Default for GeoLocationDetails[src]

impl PartialEq<GeoLocationDetails> for GeoLocationDetails[src]

impl Debug for GeoLocationDetails[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,