pub enum SingleRegion {
NorthAmerica(NALocation),
SouthAmerica(SALocation),
Europe(EuropeLocation),
Asia(AsiaLocation),
Australia(AusLocation),
}
Expand description
The possible options for single regions.
Variants§
NorthAmerica(NALocation)
All options in North America.
SouthAmerica(SALocation)
All options in South America.
Europe(EuropeLocation)
All options in Europe.
Asia(AsiaLocation)
All options in Asia.
Australia(AusLocation)
All options in Australia.
Trait Implementations§
Source§impl Debug for SingleRegion
impl Debug for SingleRegion
Source§impl<'de> Deserialize<'de> for SingleRegion
impl<'de> Deserialize<'de> for SingleRegion
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 PartialEq for SingleRegion
impl PartialEq for SingleRegion
Source§impl Serialize for SingleRegion
impl Serialize for SingleRegion
impl StructuralPartialEq for SingleRegion
Auto Trait Implementations§
impl Freeze for SingleRegion
impl RefUnwindSafe for SingleRegion
impl Send for SingleRegion
impl Sync for SingleRegion
impl Unpin for SingleRegion
impl UnwindSafe for SingleRegion
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