pub struct EcpPrimitive {
pub n: i32,
pub zeta: f64,
pub coef: f64,
}Expand description
One radial primitive d · r^(n−2) · exp(−ζ r²) of an ECP expansion
(n ∈ {0, 1, 2, ...}).
Fields§
§n: i32Power n of the r^{n−2} prefactor (as tabulated; n ≥ 0).
zeta: f64Gaussian exponent ζ (bohr⁻²), > 0.
coef: f64Expansion coefficient d, with the tabulated sign.
Trait Implementations§
Source§impl Clone for EcpPrimitive
impl Clone for EcpPrimitive
Source§fn clone(&self) -> EcpPrimitive
fn clone(&self) -> EcpPrimitive
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EcpPrimitive
impl Debug for EcpPrimitive
Source§impl PartialEq for EcpPrimitive
impl PartialEq for EcpPrimitive
Source§fn eq(&self, other: &EcpPrimitive) -> bool
fn eq(&self, other: &EcpPrimitive) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EcpPrimitive
Auto Trait Implementations§
impl Freeze for EcpPrimitive
impl RefUnwindSafe for EcpPrimitive
impl Send for EcpPrimitive
impl Sync for EcpPrimitive
impl Unpin for EcpPrimitive
impl UnsafeUnpin for EcpPrimitive
impl UnwindSafe for EcpPrimitive
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