Enum aws_sdk_rust::aws::common::region::Region
[−]
[src]
pub enum Region {
ApNortheast1,
ApNortheast2,
ApSouth1,
ApSoutheast1,
ApSoutheast2,
EuCentral1,
EuWest1,
SaEast1,
UsEast1,
UsWest1,
UsWest2,
CnNorth1,
}An AWS region. CnNorth1 is currently untested due to Rusoto maintainers not having access to AWS China.
Variants
ApNortheast1ApNortheast2ApSouth1ApSoutheast1ApSoutheast2EuCentral1EuWest1SaEast1UsEast1UsWest1UsWest2CnNorth1Trait Implementations
impl Debug for Region[src]
impl Clone for Region[src]
fn clone(&self) -> Region
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for Region[src]
impl PartialEq for Region[src]
fn eq(&self, __arg_0: &Region) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Decodable for Region[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Region, __D::Error>
Deserialize a value using a Decoder.
impl Encodable for Region[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>
Serialize a value using an Encoder.
impl Display for Region[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError>
Formats the value using the given formatter. Read more
impl FromStr for Region[src]
type Err = ParseRegionError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Region, ParseRegionError>
Parses a string s to return a value of this type. Read more