Struct pdbtbx::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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.