Struct BetaMinus
#[repr(C)]pub struct BetaMinus {
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 anti_nu_mean_energy: Option<f32>,
pub unc_ame: Option<f32>,
}
Expand description
Special data for beta-minus 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)
anti_nu_mean_energy: Option<f32>
Anti-neutrino mean energy (keV)
unc_ame: Option<f32>
Anti-neutrino mean energy uncertainty (keV)
Trait Implementations§
§impl<'de> Deserialize<'de> for BetaMinus
impl<'de> Deserialize<'de> for BetaMinus
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BetaMinus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BetaMinus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<BetaMinus> for SpecialData
impl From<BetaMinus> for SpecialData
§fn from(data: BetaMinus) -> SpecialData
fn from(data: BetaMinus) -> SpecialData
Converts to this type from the input type.
§impl Serialize for BetaMinus
impl Serialize for BetaMinus
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for BetaMinus
impl RefUnwindSafe for BetaMinus
impl Send for BetaMinus
impl Sync for BetaMinus
impl Unpin for BetaMinus
impl UnwindSafe for BetaMinus
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.