#[repr(u8)]pub enum AtomType {
Show 88 variants
H = 0,
He = 1,
Li = 2,
Be = 3,
B = 4,
C = 5,
N = 6,
O = 7,
F = 8,
Ne = 9,
Na = 10,
Mg = 11,
Al = 12,
Si = 13,
P = 14,
S = 15,
Cl = 16,
Ar = 17,
K = 18,
Ca = 19,
Sc = 20,
Ti = 21,
V = 22,
Cr = 23,
Mn = 24,
Fe = 25,
Co = 26,
Ni = 27,
Cu = 28,
Zn = 29,
Ga = 30,
Ge = 31,
As = 32,
Se = 33,
Br = 34,
Kr = 35,
Rb = 36,
Sr = 37,
Y = 38,
Zr = 39,
Nb = 40,
Mo = 41,
Tc = 42,
Ru = 43,
Rh = 44,
Pd = 45,
Ag = 46,
Cd = 47,
In = 48,
Sn = 49,
Sb = 50,
Te = 51,
I = 52,
Xe = 53,
Cs = 54,
Ba = 55,
La = 56,
Ce = 57,
Pr = 58,
Nd = 59,
Pm = 60,
Sm = 61,
Eu = 62,
Gd = 63,
Tb = 64,
Dy = 65,
Ho = 66,
Er = 67,
Tm = 68,
Yb = 69,
Lu = 70,
Hf = 71,
Ta = 72,
W = 73,
Re = 74,
Os = 75,
Ir = 76,
Pt = 77,
Au = 78,
Hg = 79,
Tl = 80,
Pb = 81,
Bi = 82,
Po = 83,
At = 84,
Rn = 85,
Fr = 86,
Ra = 87,
}Variants§
H = 0
This is the type of the Atom
He = 1
Li = 2
Be = 3
B = 4
C = 5
N = 6
O = 7
F = 8
Ne = 9
Na = 10
Mg = 11
Al = 12
Si = 13
P = 14
S = 15
Cl = 16
Ar = 17
K = 18
Ca = 19
Sc = 20
Ti = 21
V = 22
Cr = 23
Mn = 24
Fe = 25
Co = 26
Ni = 27
Cu = 28
Zn = 29
Ga = 30
Ge = 31
As = 32
Se = 33
Br = 34
Kr = 35
Rb = 36
Sr = 37
Y = 38
Zr = 39
Nb = 40
Mo = 41
Tc = 42
Ru = 43
Rh = 44
Pd = 45
Ag = 46
Cd = 47
In = 48
Sn = 49
Sb = 50
Te = 51
I = 52
Xe = 53
Cs = 54
Ba = 55
La = 56
Ce = 57
Pr = 58
Nd = 59
Pm = 60
Sm = 61
Eu = 62
Gd = 63
Tb = 64
Dy = 65
Ho = 66
Er = 67
Tm = 68
Yb = 69
Lu = 70
Hf = 71
Ta = 72
W = 73
Re = 74
Os = 75
Ir = 76
Pt = 77
Au = 78
Hg = 79
Tl = 80
Pb = 81
Bi = 82
Po = 83
At = 84
Rn = 85
Fr = 86
Ra = 87
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AtomType
impl<'de> Deserialize<'de> for AtomType
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 Ord for AtomType
impl Ord for AtomType
Source§impl PartialOrd for AtomType
impl PartialOrd for AtomType
impl Copy for AtomType
impl Eq for AtomType
impl StructuralPartialEq for AtomType
Auto Trait Implementations§
impl Freeze for AtomType
impl RefUnwindSafe for AtomType
impl Send for AtomType
impl Sync for AtomType
impl Unpin for AtomType
impl UnwindSafe for AtomType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more