pub struct UrrLGroup {
pub l: u32,
pub awri: f64,
pub j_groups: Vec<UrrJGroup>,
}Expand description
Average URR parameters for one L-value.
Reference: ENDF-6 Formats Manual §2.2.2
Fields§
§l: u32Orbital angular momentum quantum number.
awri: f64Atomic weight ratio for this L-group.
j_groups: Vec<UrrJGroup>J-groups within this L-value.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UrrLGroup
impl<'de> Deserialize<'de> for UrrLGroup
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
Auto Trait Implementations§
impl Freeze for UrrLGroup
impl RefUnwindSafe for UrrLGroup
impl Send for UrrLGroup
impl Sync for UrrLGroup
impl Unpin for UrrLGroup
impl UnsafeUnpin for UrrLGroup
impl UnwindSafe for UrrLGroup
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