Struct AtomicRadius

Source
pub struct AtomicRadius {
    pub unbound: Option<f64>,
    pub van_der_waals: Option<f64>,
    pub covalent_single: f64,
    pub covalent_double: Option<f64>,
    pub covalent_triple: Option<f64>,
}
Expand description

Hold all atomic radii for a single element. So that in the code it is obvious which radius you use. All values are in Å (10e-10 m or 0.1 nm).

Fields§

§unbound: Option<f64>

Gets the atomic radius (defined up until ‘Cm’ 96) in Å. Source: Martin Rahm, Roald Hoffmann, and N. W. Ashcroft. Atomic and Ionic Radii of Elements 1-96. Chemistry - A European Journal, 22(41):14625–14632, oct 2016. http://doi.org/10.1002/chem.201602949. Updated to the corrigendum: https://doi.org/10.1002/chem.201700610

§van_der_waals: Option<f64>

Gets the van der Waals radius (defined up until ‘Es’ 99 excluding 62, 84-88) in Å. Source: Alvarez, S. (2013). A cartography of the van der Waals territories. Dalton Transactions, 42(24), 8617. https://doi.org/10.1039/c3dt50599e

§covalent_single: f64

Gets the single covalently bonded atom radius (defined for all elements (<=118)) in Å. Source: P. Pyykkö; M. Atsumi (2009). “Molecular Single-Bond Covalent Radii for Elements 1-118”. Chemistry: A European Journal. 15 (1): 186–197. http://doi.org/10.1002/chem.200800987

§covalent_double: Option<f64>

Gets the double covalently bonded atom radius (defined for the elements 3-112) in Å. Source: P. Pyykkö; M. Atsumi (2009). “Molecular Double-Bond Covalent Radii for Elements Li–E112”. Chemistry: A European Journal. 15 (46): 12770–12779. http://doi.org/10.1002/chem.200901472

§covalent_triple: Option<f64>

Gets the double covalently bonded atom radius (defined for all applicable elements (<=112)) in Å. Source: P. Pyykkö; S. Riedel; M. Patzschke (2005). “Triple-Bond Covalent Radii”. Chemistry: A European Journal. 11 (12): 3511–3520. http://doi.org/10.1002/chem.200401299

Trait Implementations§

Source§

impl Debug for AtomicRadius

Source§

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

Formats the value using the given formatter. Read more

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> 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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
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.