#[repr(u8)]pub enum ElemClass {
AlkaliMetals = 0,
AlkalineEarthMetals = 1,
TransitionMetals = 2,
PoorMetals = 3,
Metalloids = 4,
OtherNonmetals = 5,
Halogens = 6,
NobleGases = 7,
Lanthanoids = 8,
Actinoids = 9,
Unknown = 10,
MAX = 11,
}Variants§
AlkaliMetals = 0
AlkalineEarthMetals = 1
TransitionMetals = 2
PoorMetals = 3
Metalloids = 4
OtherNonmetals = 5
Halogens = 6
NobleGases = 7
Lanthanoids = 8
Actinoids = 9
Unknown = 10
MAX = 11
Auto Trait Implementations§
impl Freeze for ElemClass
impl RefUnwindSafe for ElemClass
impl Send for ElemClass
impl Sync for ElemClass
impl Unpin for ElemClass
impl UnwindSafe for ElemClass
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