[][src]Struct periodic_elements::Element

pub struct Element<'a> {
    pub number: u16,
    pub symbol: Cow<'a, str>,
    pub name: Cow<'a, str>,
    pub mass: Mass,
    pub cpk: Option<RGB8>,
    pub electron_configuration: ElectronConfiguration<'a>,
    pub electronegativity: Option<f32>,
    pub atomic_radius: Option<u16>,
    pub ion_radius: Option<IonRadius>,
    pub van_del_walls_radius: Option<u16>,
    pub ionization_energy: Option<u16>,
    pub electron_affinity: Option<i16>,
    pub oxidation_states: Cow<'a, [i8]>,
    pub standard_state: Option<State>,
    pub bonding_type: Option<BondingType>,
    pub melting_point: Option<i16>,
    pub boiling_point: Option<i16>,
    pub density: Option<f64>,
    pub group_block: Block,
    pub discovered: Year,
}

Fields

number: u16symbol: Cow<'a, str>name: Cow<'a, str>mass: Masscpk: Option<RGB8>electron_configuration: ElectronConfiguration<'a>electronegativity: Option<f32>atomic_radius: Option<u16>ion_radius: Option<IonRadius>van_del_walls_radius: Option<u16>ionization_energy: Option<u16>electron_affinity: Option<i16>oxidation_states: Cow<'a, [i8]>standard_state: Option<State>bonding_type: Option<BondingType>melting_point: Option<i16>boiling_point: Option<i16>density: Option<f64>group_block: Blockdiscovered: Year

Trait Implementations

impl<'a> Clone for Element<'a>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Element<'a>[src]

Auto Trait Implementations

impl<'a> Send for Element<'a>

impl<'a> Sync for Element<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.