pub struct AugmentationQijl {
pub tag_name: String,
pub first_index: usize,
pub second_index: usize,
pub composite_index: usize,
pub angular_momentum: i32,
pub values: NumericData,
}Expand description
Public UPF data model.
A single Q_ij^l augmentation entry.
Fields§
§tag_name: StringOriginal UPF tag name, for example PP_QIJL.1.1.0.
first_index: usizeFirst projector index i.
second_index: usizeSecond projector index j.
composite_index: usizeGenerator-provided composite index.
angular_momentum: i32Angular momentum quantum number l.
values: NumericDataNumeric payload.
Trait Implementations§
Source§impl Clone for AugmentationQijl
impl Clone for AugmentationQijl
Source§fn clone(&self) -> AugmentationQijl
fn clone(&self) -> AugmentationQijl
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 AugmentationQijl
impl Debug for AugmentationQijl
Source§impl<'de> Deserialize<'de> for AugmentationQijl
impl<'de> Deserialize<'de> for AugmentationQijl
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 AugmentationQijl
impl PartialEq for AugmentationQijl
Source§impl Serialize for AugmentationQijl
impl Serialize for AugmentationQijl
impl StructuralPartialEq for AugmentationQijl
Auto Trait Implementations§
impl Freeze for AugmentationQijl
impl RefUnwindSafe for AugmentationQijl
impl Send for AugmentationQijl
impl Sync for AugmentationQijl
impl Unpin for AugmentationQijl
impl UnsafeUnpin for AugmentationQijl
impl UnwindSafe for AugmentationQijl
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