Element

Enum Element 

Source
#[repr(u8)]
pub enum Element {
Show 118 variants H = 1, He = 2, Li = 3, Be = 4, B = 5, C = 6, N = 7, O = 8, F = 9, Ne = 10, Na = 11, Mg = 12, Al = 13, Si = 14, P = 15, S = 16, Cl = 17, Ar = 18, K = 19, Ca = 20, Sc = 21, Ti = 22, V = 23, Cr = 24, Mn = 25, Fe = 26, Co = 27, Ni = 28, Cu = 29, Zn = 30, Ga = 31, Ge = 32, As = 33, Se = 34, Br = 35, Kr = 36, Rb = 37, Sr = 38, Y = 39, Zr = 40, Nb = 41, Mo = 42, Tc = 43, Ru = 44, Rh = 45, Pd = 46, Ag = 47, Cd = 48, In = 49, Sn = 50, Sb = 51, Te = 52, I = 53, Xe = 54, Cs = 55, Ba = 56, La = 57, Ce = 58, Pr = 59, Nd = 60, Pm = 61, Sm = 62, Eu = 63, Gd = 64, Tb = 65, Dy = 66, Ho = 67, Er = 68, Tm = 69, Yb = 70, Lu = 71, Hf = 72, Ta = 73, W = 74, Re = 75, Os = 76, Ir = 77, Pt = 78, Au = 79, Hg = 80, Tl = 81, Pb = 82, Bi = 83, Po = 84, At = 85, Rn = 86, Fr = 87, Ra = 88, Ac = 89, Th = 90, Pa = 91, U = 92, Np = 93, Pu = 94, Am = 95, Cm = 96, Bk = 97, Cf = 98, Es = 99, Fm = 100, Md = 101, No = 102, Lr = 103, Rf = 104, Db = 105, Sg = 106, Bh = 107, Hs = 108, Mt = 109, Ds = 110, Rg = 111, Cn = 112, Nh = 113, Fl = 114, Mc = 115, Lv = 116, Ts = 117, Og = 118,
}
Expand description

Enum for general chemical element properties

  use ::Nuclide::{Element,ChemElement};
   let lithium = Element::Li;
   let am = lithium.am();
   let ionization_lvl2 = lithium.ionization_energies(2).unwrap();

Variants§

§

H = 1

§

He = 2

§

Li = 3

§

Be = 4

§

B = 5

§

C = 6

§

N = 7

§

O = 8

§

F = 9

§

Ne = 10

§

Na = 11

§

Mg = 12

§

Al = 13

§

Si = 14

§

P = 15

§

S = 16

§

Cl = 17

§

Ar = 18

§

K = 19

§

Ca = 20

§

Sc = 21

§

Ti = 22

§

V = 23

§

Cr = 24

§

Mn = 25

§

Fe = 26

§

Co = 27

§

Ni = 28

§

Cu = 29

§

Zn = 30

§

Ga = 31

§

Ge = 32

§

As = 33

§

Se = 34

§

Br = 35

§

Kr = 36

§

Rb = 37

§

Sr = 38

§

Y = 39

§

Zr = 40

§

Nb = 41

§

Mo = 42

§

Tc = 43

§

Ru = 44

§

Rh = 45

§

Pd = 46

§

Ag = 47

§

Cd = 48

§

In = 49

§

Sn = 50

§

Sb = 51

§

Te = 52

§

I = 53

§

Xe = 54

§

Cs = 55

§

Ba = 56

§

La = 57

§

Ce = 58

§

Pr = 59

§

Nd = 60

§

Pm = 61

§

Sm = 62

§

Eu = 63

§

Gd = 64

§

Tb = 65

§

Dy = 66

§

Ho = 67

§

Er = 68

§

Tm = 69

§

Yb = 70

§

Lu = 71

§

Hf = 72

§

Ta = 73

§

W = 74

§

Re = 75

§

Os = 76

§

Ir = 77

§

Pt = 78

§

Au = 79

§

Hg = 80

§

Tl = 81

§

Pb = 82

§

Bi = 83

§

Po = 84

§

At = 85

§

Rn = 86

§

Fr = 87

§

Ra = 88

§

Ac = 89

§

Th = 90

§

Pa = 91

§

U = 92

§

Np = 93

§

Pu = 94

§

Am = 95

§

Cm = 96

§

Bk = 97

§

Cf = 98

§

Es = 99

§

Fm = 100

§

Md = 101

§

No = 102

§

Lr = 103

§

Rf = 104

§

Db = 105

§

Sg = 106

§

Bh = 107

§

Hs = 108

§

Mt = 109

§

Ds = 110

§

Rg = 111

§

Cn = 112

§

Nh = 113

§

Fl = 114

§

Mc = 115

§

Lv = 116

§

Ts = 117

§

Og = 118

Implementations§

Source§

impl Element

Source

pub const fn protons(&self) -> u8

Source

pub const fn from_protons(protons: u8) -> Element

Source

pub const fn symbol(&self) -> &'static str

Source

pub fn abundant_nuclides(&self) -> NuclideFraction

Fraction as measured from samples on Earth. For non-abundant elements, returns only the most stable isotope.

Source

pub fn iter() -> impl Iterator<Item = Element>

Iterate through all elements

Trait Implementations§

Source§

impl ChemElement for Element

Source§

fn atomic_num(&self) -> u64

Atomic number
Source§

fn am(&self) -> f64

Atomic mass in Daltons
Source§

fn electron_affinity(&self) -> f64

Electron affinity in kj/mol
Source§

fn ionization_energies(&self, level: usize) -> Option<f64>

Returns the ionization energies for all known levels. Values are in kj/mol
Source§

fn electronegativity(&self) -> f64

Returns Oganov-Tantardini values, the current best evaluation
Source§

fn mullikan_en(&self) -> f64

Mullikan electronegativity
Source§

fn allen_en(&self) -> f64

Allen electronegativity
Source§

fn pauling_en(&self) -> f64

Pauling electronegativity
Source§

fn covalent_radii(&self, bond: usize) -> Option<f64>

Covalent radii of the first three bonds
Source§

fn ionic_radii(&self) -> f64

Ionic radii
Source§

fn vdr_crystal(&self) -> f64

Van der Waal radius in crystalline structure
Source§

fn vdr_isolated(&self) -> f64

Van der Waal radius in isolated atoms
Source§

impl Clone for Element

Source§

fn clone(&self) -> Element

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Element

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Element

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Element> for NuclideFraction

Fraction as measured from samples on Earth. For non-abundant elements, returns only the most stable isotope.

Source§

fn from(element: Element) -> Self

Converts to this type from the input type.
Source§

impl Copy for Element

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.