[][src]Enum aws_auth::AwsRegion

pub enum AwsRegion {
    UsEast1,
    UsEast2,
    UsWest1,
    UsWest2,
    CaCentral1,
    EuCentral1,
    EuWest1,
    EuWest2,
    EuWest3,
    EuNorth1,
    ApEast1,
    ApNortheast1,
    ApNortheast2,
    ApNortheast3,
    ApSoutheast1,
    ApSoutheast2,
    ApSouth1,
    MeSouth1,
    SaEast1,
}

Variants

UsEast1
UsEast2
UsWest1
UsWest2
CaCentral1
EuCentral1
EuWest1
EuWest2
EuWest3
EuNorth1
ApEast1
ApNortheast1
ApNortheast2
ApNortheast3
ApSoutheast1
ApSoutheast2
ApSouth1
MeSouth1
SaEast1

Implementations

impl AwsRegion[src]

pub fn to_str(self) -> &'static str[src]

pub fn to_bytes(self) -> &'static [u8][src]

pub fn try_from<S>(bytes: &S) -> Result<AwsRegion, ()> where
    S: AsRef<[u8]>, 
[src]

Trait Implementations

impl Clone for AwsRegion[src]

impl Copy for AwsRegion[src]

impl Debug for AwsRegion[src]

impl Eq for AwsRegion[src]

impl From<AwsRegion> for &'static [u8][src]

impl Hash for AwsRegion[src]

impl PartialEq<AwsRegion> for AwsRegion[src]

impl StructuralEq for AwsRegion[src]

impl StructuralPartialEq for AwsRegion[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.