pub struct DriftTable {
pub name: String,
pub rows: Vec<DriftRow>,
}Expand description
Mass conservation across all five dialects.
Fields§
§name: StringMaterial name from EmitOptions::name.
rows: Vec<DriftRow>One row per dialect, in Code::all order.
Implementations§
Source§impl DriftTable
impl DriftTable
Sourcepub fn worst_rel_drift(&self) -> f64
pub fn worst_rel_drift(&self) -> f64
Largest relative drift over all dialects.
Trait Implementations§
Source§impl Clone for DriftTable
impl Clone for DriftTable
Source§fn clone(&self) -> DriftTable
fn clone(&self) -> DriftTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DriftTable
impl RefUnwindSafe for DriftTable
impl Send for DriftTable
impl Sync for DriftTable
impl Unpin for DriftTable
impl UnsafeUnpin for DriftTable
impl UnwindSafe for DriftTable
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