Struct chemistru_elements::data::electron::ElectronData
source · pub struct ElectronData {
pub shells: [u8; 8],
pub ionisation_energies: [f64; 30],
pub electron_configuration: ElectronConfiguration,
pub electron_affinity: Option<f64>,
pub electronegativity: Option<f64>,
}Fields§
§shells: [u8; 8]§ionisation_energies: [f64; 30]§electron_configuration: ElectronConfiguration§electron_affinity: Option<f64>§electronegativity: Option<f64>Trait Implementations§
source§impl Clone for ElectronData
impl Clone for ElectronData
source§fn clone(&self) -> ElectronData
fn clone(&self) -> ElectronData
Returns a copy 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 ElectronData
impl Debug for ElectronData
source§impl PartialEq for ElectronData
impl PartialEq for ElectronData
source§fn eq(&self, other: &ElectronData) -> bool
fn eq(&self, other: &ElectronData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for ElectronData
impl PartialOrd for ElectronData
source§fn partial_cmp(&self, other: &ElectronData) -> Option<Ordering>
fn partial_cmp(&self, other: &ElectronData) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl ToTokens for ElectronData
impl ToTokens for ElectronData
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere Self: Sized,
impl Copy for ElectronData
impl StructuralPartialEq for ElectronData
Auto Trait Implementations§
impl RefUnwindSafe for ElectronData
impl Send for ElectronData
impl Sync for ElectronData
impl Unpin for ElectronData
impl UnwindSafe for ElectronData
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