pub enum GeologicEra {
Precambrian,
Paleozoic,
Mesozoic,
Cenozoic,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for GeologicEra
impl Clone for GeologicEra
Source§fn clone(&self) -> GeologicEra
fn clone(&self) -> GeologicEra
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GeologicEra
impl Debug for GeologicEra
Source§impl Display for GeologicEra
impl Display for GeologicEra
Source§impl FromStr for GeologicEra
impl FromStr for GeologicEra
Source§impl Hash for GeologicEra
impl Hash for GeologicEra
Source§impl Ord for GeologicEra
impl Ord for GeologicEra
Source§fn cmp(&self, other: &GeologicEra) -> Ordering
fn cmp(&self, other: &GeologicEra) -> Ordering
1.21.0 (const: unstable) · 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 GeologicEra
impl PartialEq for GeologicEra
Source§fn eq(&self, other: &GeologicEra) -> bool
fn eq(&self, other: &GeologicEra) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for GeologicEra
impl PartialOrd for GeologicEra
impl Eq for GeologicEra
impl StructuralPartialEq for GeologicEra
Auto Trait Implementations§
impl Freeze for GeologicEra
impl RefUnwindSafe for GeologicEra
impl Send for GeologicEra
impl Sync for GeologicEra
impl Unpin for GeologicEra
impl UnsafeUnpin for GeologicEra
impl UnwindSafe for GeologicEra
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