pub struct Isotope {
pub name: &'static str,
pub symbol: &'static str,
pub mass_number: u32,
pub neutrons: u32,
pub atomic_mass: f64,
pub half_life: Option<f64>,
pub half_life_unit: Option<&'static str>,
pub stable: bool,
pub decay_modes: Vec<DecayMode>,
pub natural_abundance: f64,
pub nuclear_spin: Option<&'static str>,
}Fields§
§name: &'static str§symbol: &'static str§mass_number: u32§neutrons: u32§atomic_mass: f64§half_life: Option<f64>§half_life_unit: Option<&'static str>§stable: bool§decay_modes: Vec<DecayMode>§natural_abundance: f64§nuclear_spin: Option<&'static str>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Isotope
impl RefUnwindSafe for Isotope
impl Send for Isotope
impl Sync for Isotope
impl Unpin for Isotope
impl UnsafeUnpin for Isotope
impl UnwindSafe for Isotope
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