pub enum ServiceRegion {
Show 23 variants
Ap_northeast_1,
Ap_northeast_2,
Ap_south_1,
Ap_southeast_1,
Ap_southeast_2,
Eu_central_1,
Eu_west_1,
Eu_west_2,
Il_central_1,
Us_east_1,
Us_east_2,
Us_west_2,
Us_east1,
Us_central1,
Europe_west4,
Asia_southeast1,
Asia_northeast1,
Eastus,
Eastus2,
Westus3,
Germanywestcentral,
Centralus,
Unknown(String),
}Expand description
Inline enum for Service.region.
Variants§
Ap_northeast_1
Ap_northeast_2
Ap_south_1
Ap_southeast_1
Ap_southeast_2
Eu_central_1
Eu_west_1
Eu_west_2
Il_central_1
Us_east_1
Us_east_2
Us_west_2
Us_east1
Us_central1
Europe_west4
Asia_southeast1
Asia_northeast1
Eastus
Eastus2
Westus3
Germanywestcentral
Centralus
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ServiceRegion
impl Clone for ServiceRegion
Source§fn clone(&self) -> ServiceRegion
fn clone(&self) -> ServiceRegion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ServiceRegion
impl Debug for ServiceRegion
Source§impl Default for ServiceRegion
impl Default for ServiceRegion
Source§fn default() -> ServiceRegion
fn default() -> ServiceRegion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceRegion
impl<'de> Deserialize<'de> for ServiceRegion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ServiceRegion
impl Display for ServiceRegion
Source§impl PartialEq for ServiceRegion
impl PartialEq for ServiceRegion
Source§fn eq(&self, other: &ServiceRegion) -> bool
fn eq(&self, other: &ServiceRegion) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceRegion
impl Serialize for ServiceRegion
impl StructuralPartialEq for ServiceRegion
Auto Trait Implementations§
impl Freeze for ServiceRegion
impl RefUnwindSafe for ServiceRegion
impl Send for ServiceRegion
impl Sync for ServiceRegion
impl Unpin for ServiceRegion
impl UnsafeUnpin for ServiceRegion
impl UnwindSafe for ServiceRegion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.