pub enum CrystalSystem {
Isometric,
Orthorhombic,
Hexagonal,
Trigonal,
Tetragonal,
Monoclinic,
Triclinic,
Amorphous,
Icosahedral,
}Expand description
Crystal system classification.
Variants§
Trait Implementations§
Source§impl Clone for CrystalSystem
impl Clone for CrystalSystem
Source§fn clone(&self) -> CrystalSystem
fn clone(&self) -> CrystalSystem
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 CrystalSystem
impl Debug for CrystalSystem
Source§impl<'de> Deserialize<'de> for CrystalSystem
impl<'de> Deserialize<'de> for CrystalSystem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CrystalSystem
impl PartialEq for CrystalSystem
Source§impl Serialize for CrystalSystem
impl Serialize for CrystalSystem
impl Eq for CrystalSystem
impl StructuralPartialEq for CrystalSystem
Auto Trait Implementations§
impl Freeze for CrystalSystem
impl RefUnwindSafe for CrystalSystem
impl Send for CrystalSystem
impl Sync for CrystalSystem
impl Unpin for CrystalSystem
impl UnwindSafe for CrystalSystem
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