pub struct DriftRow {
pub code: Code,
pub mass_in: f64,
pub mass_out: f64,
pub rel_drift: f64,
pub dropped: Vec<Dropped>,
pub reparsed: bool,
}Expand description
One row of the mass-drift report.
Fields§
§code: CodeDialect this row covers.
mass_in: f64Input mass [g].
mass_out: f64Mass represented in the emitted cards [g].
rel_drift: f64(mass_in - mass_out) / mass_in; zero for lossless emission.
dropped: Vec<Dropped>Nuclides skipped with reasons.
reparsed: boolWhether the emitted text was re-parse verified.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DriftRow
impl RefUnwindSafe for DriftRow
impl Send for DriftRow
impl Sync for DriftRow
impl Unpin for DriftRow
impl UnsafeUnpin for DriftRow
impl UnwindSafe for DriftRow
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