pub struct SpinOrbitData {
pub relativistic_wavefunctions: Vec<RelativisticWavefunction>,
pub relativistic_beta_projectors: Vec<RelativisticBetaProjector>,
}Expand description
Public UPF data model.
Spin-orbit data from <PP_SPIN_ORB>.
PP stands for pseudopotential.
Fields§
§relativistic_wavefunctions: Vec<RelativisticWavefunction>Relativistic wavefunctions from tags such as <PP_RELWFC.1>.
RELWFC stands for relativistic wavefunction.
relativistic_beta_projectors: Vec<RelativisticBetaProjector>Relativistic beta projectors from tags such as <PP_RELBETA.1>.
RELBETA stands for relativistic beta projector.
Trait Implementations§
Source§impl Clone for SpinOrbitData
impl Clone for SpinOrbitData
Source§fn clone(&self) -> SpinOrbitData
fn clone(&self) -> SpinOrbitData
Returns a duplicate of the value. Read more
1.0.0 · 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 SpinOrbitData
impl Debug for SpinOrbitData
Source§impl<'de> Deserialize<'de> for SpinOrbitData
impl<'de> Deserialize<'de> for SpinOrbitData
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 PartialEq for SpinOrbitData
impl PartialEq for SpinOrbitData
Source§impl Serialize for SpinOrbitData
impl Serialize for SpinOrbitData
impl StructuralPartialEq for SpinOrbitData
Auto Trait Implementations§
impl Freeze for SpinOrbitData
impl RefUnwindSafe for SpinOrbitData
impl Send for SpinOrbitData
impl Sync for SpinOrbitData
impl Unpin for SpinOrbitData
impl UnsafeUnpin for SpinOrbitData
impl UnwindSafe for SpinOrbitData
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