pub enum ByocConfigRegionid {
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 ByocConfig.regionId.
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 ByocConfigRegionid
impl Clone for ByocConfigRegionid
Source§fn clone(&self) -> ByocConfigRegionid
fn clone(&self) -> ByocConfigRegionid
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 ByocConfigRegionid
impl Debug for ByocConfigRegionid
Source§impl Default for ByocConfigRegionid
impl Default for ByocConfigRegionid
Source§fn default() -> ByocConfigRegionid
fn default() -> ByocConfigRegionid
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ByocConfigRegionid
impl<'de> Deserialize<'de> for ByocConfigRegionid
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 ByocConfigRegionid
impl Display for ByocConfigRegionid
Source§impl PartialEq for ByocConfigRegionid
impl PartialEq for ByocConfigRegionid
Source§fn eq(&self, other: &ByocConfigRegionid) -> bool
fn eq(&self, other: &ByocConfigRegionid) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ByocConfigRegionid
impl Serialize for ByocConfigRegionid
impl StructuralPartialEq for ByocConfigRegionid
Auto Trait Implementations§
impl Freeze for ByocConfigRegionid
impl RefUnwindSafe for ByocConfigRegionid
impl Send for ByocConfigRegionid
impl Sync for ByocConfigRegionid
impl Unpin for ByocConfigRegionid
impl UnsafeUnpin for ByocConfigRegionid
impl UnwindSafe for ByocConfigRegionid
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