Enum AtmosphereLayer
pub enum AtmosphereLayer {
Troposphere,
Stratosphere,
Mesosphere,
Thermosphere,
Exosphere,
Unknown,
Custom(String),
}Expand description
Stable atmosphere layer vocabulary.
Variants§
Troposphere
Troposphere.
Stratosphere
Stratosphere.
Mesosphere
Mesosphere.
Thermosphere
Thermosphere.
Exosphere
Exosphere.
Unknown
Unknown atmosphere layer.
Custom(String)
Caller-defined atmosphere layer.
Trait Implementations§
§impl Clone for AtmosphereLayer
impl Clone for AtmosphereLayer
§fn clone(&self) -> AtmosphereLayer
fn clone(&self) -> AtmosphereLayer
Returns a duplicate 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 more§impl Debug for AtmosphereLayer
impl Debug for AtmosphereLayer
§impl Display for AtmosphereLayer
impl Display for AtmosphereLayer
§impl FromStr for AtmosphereLayer
impl FromStr for AtmosphereLayer
§type Err = AtmosphereLayerParseError
type Err = AtmosphereLayerParseError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<AtmosphereLayer, <AtmosphereLayer as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AtmosphereLayer, <AtmosphereLayer as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for AtmosphereLayer
impl Hash for AtmosphereLayer
§impl Ord for AtmosphereLayer
impl Ord for AtmosphereLayer
§impl PartialEq for AtmosphereLayer
impl PartialEq for AtmosphereLayer
§impl PartialOrd for AtmosphereLayer
impl PartialOrd for AtmosphereLayer
impl Eq for AtmosphereLayer
impl StructuralPartialEq for AtmosphereLayer
Auto Trait Implementations§
impl Freeze for AtmosphereLayer
impl RefUnwindSafe for AtmosphereLayer
impl Send for AtmosphereLayer
impl Sync for AtmosphereLayer
impl Unpin for AtmosphereLayer
impl UnsafeUnpin for AtmosphereLayer
impl UnwindSafe for AtmosphereLayer
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