#[non_exhaustive]pub enum AzureRegion {
EastUs,
EastUs2,
WestUs,
WestUs2,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for AzureRegion
impl Clone for AzureRegion
Source§fn clone(&self) -> AzureRegion
fn clone(&self) -> AzureRegion
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AzureRegion
impl Debug for AzureRegion
Source§impl<'de> Deserialize<'de> for AzureRegion
impl<'de> Deserialize<'de> for AzureRegion
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 AzureRegion
impl Display for AzureRegion
Source§impl From<AzureRegion> for Location
impl From<AzureRegion> for Location
Source§fn from(region: AzureRegion) -> Self
fn from(region: AzureRegion) -> Self
Converts to this type from the input type.
Source§impl FromStr for AzureRegion
impl FromStr for AzureRegion
Source§impl JsonSchema for AzureRegion
impl JsonSchema for AzureRegion
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(_gen: &mut SchemaGenerator) -> Schema
fn json_schema(_gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for AzureRegion
impl PartialEq for AzureRegion
Source§impl Sequence for AzureRegion
impl Sequence for AzureRegion
Source§impl Serialize for AzureRegionwhere
Self: Display,
impl Serialize for AzureRegionwhere
Self: Display,
impl Copy for AzureRegion
impl StructuralPartialEq for AzureRegion
Auto Trait Implementations§
impl Freeze for AzureRegion
impl RefUnwindSafe for AzureRegion
impl Send for AzureRegion
impl Sync for AzureRegion
impl Unpin for AzureRegion
impl UnwindSafe for AzureRegion
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