pub struct XrayDatabase {Show 14 fields
pub version: Vec<VersionRecord>,
pub elements: Vec<ElementRecord>,
pub xray_levels: Vec<XrayLevelRecord>,
pub xray_transitions: Vec<XrayTransitionRecord>,
pub coster_kronig: Vec<CosterKronigRecord>,
pub photoabsorption: Vec<PhotoabsorptionRecord>,
pub scattering: Vec<ScatteringRecord>,
pub chantler: Vec<ChantlerRecord>,
pub waasmaier: Vec<WaasmaierRecord>,
pub compton_energies: ComptonEnergiesRecord,
pub keski_rahkonen_krause: Vec<CoreWidthRecord>,
pub krause_oliver: Vec<CoreWidthRecord>,
pub corelevel_widths: Vec<CoreWidthRecord>,
pub ionization_potentials: Vec<IonizationPotentialRecord>,
}Expand description
The complete XrayDB database, deserialized from the embedded blob.
Fields§
§version: Vec<VersionRecord>Upstream XrayDB version records.
elements: Vec<ElementRecord>One record per element, ordered by atomic number.
xray_levels: Vec<XrayLevelRecord>Absorption edges (one row per element and IUPAC level).
xray_transitions: Vec<XrayTransitionRecord>Emission lines (one row per element and Siegbahn label).
coster_kronig: Vec<CosterKronigRecord>Coster-Kronig transition probabilities.
photoabsorption: Vec<PhotoabsorptionRecord>Elam photoabsorption cross-section splines.
scattering: Vec<ScatteringRecord>Elam coherent and incoherent scattering splines.
chantler: Vec<ChantlerRecord>Chantler anomalous-scattering and attenuation tables.
waasmaier: Vec<WaasmaierRecord>Waasmaier-Kirfel f0 coefficients, one row per ion.
compton_energies: ComptonEnergiesRecordTabulated Compton scattering energies.
keski_rahkonen_krause: Vec<CoreWidthRecord>Core widths from Keski-Rahkonen & Krause.
krause_oliver: Vec<CoreWidthRecord>Core widths from Krause & Oliver (1979).
corelevel_widths: Vec<CoreWidthRecord>Merged core widths: KK updated with KO for K, L1, L2, L3.
ionization_potentials: Vec<IonizationPotentialRecord>Ion-chamber gas ionization potentials, eV per ion pair.
Trait Implementations§
Source§impl Debug for XrayDatabase
impl Debug for XrayDatabase
Source§impl<'de> Deserialize<'de> for XrayDatabase
impl<'de> Deserialize<'de> for XrayDatabase
Source§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
Auto Trait Implementations§
impl Freeze for XrayDatabase
impl RefUnwindSafe for XrayDatabase
impl Send for XrayDatabase
impl Sync for XrayDatabase
impl Unpin for XrayDatabase
impl UnsafeUnpin for XrayDatabase
impl UnwindSafe for XrayDatabase
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