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