pub struct RelativisticBetaProjector {
pub tag_name: String,
pub index: usize,
pub angular_momentum: i32,
pub total_angular_momentum: f64,
}Expand description
Public UPF data model. A relativistic beta projector entry.
Fields§
§tag_name: StringOriginal UPF tag name, for example PP_RELBETA.1.
index: usizeProjector index.
angular_momentum: i32Angular momentum quantum number l.
total_angular_momentum: f64Total angular momentum quantum number j.
Trait Implementations§
Source§impl Clone for RelativisticBetaProjector
impl Clone for RelativisticBetaProjector
Source§fn clone(&self) -> RelativisticBetaProjector
fn clone(&self) -> RelativisticBetaProjector
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 RelativisticBetaProjector
impl Debug for RelativisticBetaProjector
Source§impl<'de> Deserialize<'de> for RelativisticBetaProjector
impl<'de> Deserialize<'de> for RelativisticBetaProjector
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
impl StructuralPartialEq for RelativisticBetaProjector
Auto Trait Implementations§
impl Freeze for RelativisticBetaProjector
impl RefUnwindSafe for RelativisticBetaProjector
impl Send for RelativisticBetaProjector
impl Sync for RelativisticBetaProjector
impl Unpin for RelativisticBetaProjector
impl UnsafeUnpin for RelativisticBetaProjector
impl UnwindSafe for RelativisticBetaProjector
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