pub enum GeographyType {
Show 21 variants
Archipelago,
Barrens,
Coastline,
Continent,
Desert,
Forest,
Jungle,
Lake,
Marsh,
Mesa,
Moor,
Mountain,
Ocean,
Plain,
Plateau,
Reef,
Sea,
Swamp,
Tundra,
Wasteland,
World,
}
Variants§
Archipelago
Barrens
Coastline
Continent
Desert
Forest
Jungle
Lake
Marsh
Mesa
Moor
Mountain
Ocean
Plain
Plateau
Reef
Sea
Swamp
Tundra
Wasteland
World
Implementations§
Source§impl GeographyType
impl GeographyType
Trait Implementations§
Source§impl Clone for GeographyType
impl Clone for GeographyType
Source§fn clone(&self) -> GeographyType
fn clone(&self) -> GeographyType
Returns a copy of the value. Read more
1.0.0 · 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 GeographyType
impl Debug for GeographyType
Source§impl<'de> Deserialize<'de> for GeographyType
impl<'de> Deserialize<'de> for GeographyType
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 From<GeographyType> for &'static str
impl From<GeographyType> for &'static str
Source§fn from(variant: GeographyType) -> &'static str
fn from(variant: GeographyType) -> &'static str
Converts to this type from the input type.
Source§impl From<GeographyType> for String
impl From<GeographyType> for String
Source§fn from(variant: GeographyType) -> String
fn from(variant: GeographyType) -> String
Converts to this type from the input type.
Source§impl FromStr for GeographyType
impl FromStr for GeographyType
Source§impl PartialEq for GeographyType
impl PartialEq for GeographyType
Source§impl Serialize for GeographyType
impl Serialize for GeographyType
Source§impl TryFrom<&str> for GeographyType
impl TryFrom<&str> for GeographyType
impl Copy for GeographyType
impl Eq for GeographyType
impl StructuralPartialEq for GeographyType
Auto Trait Implementations§
impl Freeze for GeographyType
impl RefUnwindSafe for GeographyType
impl Send for GeographyType
impl Sync for GeographyType
impl Unpin for GeographyType
impl UnwindSafe for GeographyType
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