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§
Source§impl Clone for AtmosphereLayer
impl Clone for AtmosphereLayer
Source§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 moreSource§impl Debug for AtmosphereLayer
impl Debug for AtmosphereLayer
Source§impl Display for AtmosphereLayer
impl Display for AtmosphereLayer
Source§impl FromStr for AtmosphereLayer
impl FromStr for AtmosphereLayer
Source§impl Hash for AtmosphereLayer
impl Hash for AtmosphereLayer
Source§impl Ord for AtmosphereLayer
impl Ord for AtmosphereLayer
Source§fn cmp(&self, other: &AtmosphereLayer) -> Ordering
fn cmp(&self, other: &AtmosphereLayer) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AtmosphereLayer
impl PartialEq for AtmosphereLayer
Source§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