pub enum GeologicEon {
Hadean,
Archean,
Proterozoic,
Phanerozoic,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for GeologicEon
impl Clone for GeologicEon
Source§fn clone(&self) -> GeologicEon
fn clone(&self) -> GeologicEon
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 GeologicEon
impl Debug for GeologicEon
Source§impl Display for GeologicEon
impl Display for GeologicEon
Source§impl FromStr for GeologicEon
impl FromStr for GeologicEon
Source§impl Hash for GeologicEon
impl Hash for GeologicEon
Source§impl Ord for GeologicEon
impl Ord for GeologicEon
Source§fn cmp(&self, other: &GeologicEon) -> Ordering
fn cmp(&self, other: &GeologicEon) -> 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 GeologicEon
impl PartialEq for GeologicEon
Source§impl PartialOrd for GeologicEon
impl PartialOrd for GeologicEon
impl Eq for GeologicEon
impl StructuralPartialEq for GeologicEon
Auto Trait Implementations§
impl Freeze for GeologicEon
impl RefUnwindSafe for GeologicEon
impl Send for GeologicEon
impl Sync for GeologicEon
impl Unpin for GeologicEon
impl UnsafeUnpin for GeologicEon
impl UnwindSafe for GeologicEon
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