pub enum SedimentKind {
Clay,
Silt,
Sand,
Gravel,
Pebble,
Cobble,
Boulder,
Mud,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for SedimentKind
impl Clone for SedimentKind
Source§fn clone(&self) -> SedimentKind
fn clone(&self) -> SedimentKind
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 SedimentKind
impl Debug for SedimentKind
Source§impl Display for SedimentKind
impl Display for SedimentKind
Source§impl FromStr for SedimentKind
impl FromStr for SedimentKind
Source§impl Hash for SedimentKind
impl Hash for SedimentKind
Source§impl Ord for SedimentKind
impl Ord for SedimentKind
Source§fn cmp(&self, other: &SedimentKind) -> Ordering
fn cmp(&self, other: &SedimentKind) -> 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 SedimentKind
impl PartialEq for SedimentKind
Source§fn eq(&self, other: &SedimentKind) -> bool
fn eq(&self, other: &SedimentKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SedimentKind
impl PartialOrd for SedimentKind
impl Eq for SedimentKind
impl StructuralPartialEq for SedimentKind
Auto Trait Implementations§
impl Freeze for SedimentKind
impl RefUnwindSafe for SedimentKind
impl Send for SedimentKind
impl Sync for SedimentKind
impl Unpin for SedimentKind
impl UnsafeUnpin for SedimentKind
impl UnwindSafe for SedimentKind
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