Struct BetaPlus
#[repr(C)]pub struct BetaPlus {
pub daughter_level_energy: Option<f32>,
pub energy_ec: Option<f32>,
pub unc_eec: Option<f32>,
pub intensity_ec: Option<f32>,
pub unc_ie: Option<f32>,
pub log_ft: Option<f32>,
pub unc_lf: Option<f32>,
pub transition_type: Option<String>,
pub nu_mean_energy: Option<f32>,
pub unc_nme: Option<f32>,
}
Expand description
Special data for beta-plus decay
Fields§
§daughter_level_energy: Option<f32>
End-point energy for B- (keV)
energy_ec: Option<f32>
Energy of electron capture for B+
unc_eec: Option<f32>
Uncertainty in energy of electron capture for B+
intensity_ec: Option<f32>
Intensity of electron capture for B+
unc_ie: Option<f32>
Uncertainty in intensity of electron capture for B+
log_ft: Option<f32>
Log-f table value
unc_lf: Option<f32>
Log-f table value uncertainty
transition_type: Option<String>
Transition type (A for antineutrino, xNU for x neutrinos)
nu_mean_energy: Option<f32>
Neutrino mean energy (keV)
unc_nme: Option<f32>
Neutrino mean energy uncertainty (keV)
Trait Implementations§
§impl<'de> Deserialize<'de> for BetaPlus
impl<'de> Deserialize<'de> for BetaPlus
§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 From<BetaPlus> for SpecialData
impl From<BetaPlus> for SpecialData
Auto Trait Implementations§
impl Freeze for BetaPlus
impl RefUnwindSafe for BetaPlus
impl Send for BetaPlus
impl Sync for BetaPlus
impl Unpin for BetaPlus
impl UnwindSafe for BetaPlus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more