pub enum RockTexture {
Clastic,
Crystalline,
Glassy,
Vesicular,
Foliated,
NonFoliated,
Porphyritic,
FineGrained,
CoarseGrained,
Unknown,
Custom(String),
}Variants§
Clastic
Crystalline
Glassy
Vesicular
Foliated
NonFoliated
Porphyritic
FineGrained
CoarseGrained
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for RockTexture
impl Clone for RockTexture
Source§fn clone(&self) -> RockTexture
fn clone(&self) -> RockTexture
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 RockTexture
impl Debug for RockTexture
Source§impl Display for RockTexture
impl Display for RockTexture
Source§impl FromStr for RockTexture
impl FromStr for RockTexture
Source§impl Hash for RockTexture
impl Hash for RockTexture
Source§impl Ord for RockTexture
impl Ord for RockTexture
Source§fn cmp(&self, other: &RockTexture) -> Ordering
fn cmp(&self, other: &RockTexture) -> 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 RockTexture
impl PartialEq for RockTexture
Source§impl PartialOrd for RockTexture
impl PartialOrd for RockTexture
impl Eq for RockTexture
impl StructuralPartialEq for RockTexture
Auto Trait Implementations§
impl Freeze for RockTexture
impl RefUnwindSafe for RockTexture
impl Send for RockTexture
impl Sync for RockTexture
impl Unpin for RockTexture
impl UnsafeUnpin for RockTexture
impl UnwindSafe for RockTexture
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