pub struct StructuralLawSummaryRow {Show 14 fields
pub steps_per_run: usize,
pub is_perturbed: bool,
pub pearson_r: f64,
pub spearman_rho: f64,
pub slope: f64,
pub intercept: f64,
pub r2: f64,
pub residual_variance: f64,
pub mse_resid: f64,
pub slope_ci_low: f64,
pub slope_ci_high: f64,
pub sample_count: usize,
pub ratio_mean: f64,
pub ratio_std: f64,
}Fields§
§steps_per_run: usize§is_perturbed: bool§pearson_r: f64§spearman_rho: f64§slope: f64§intercept: f64§r2: f64§residual_variance: f64§mse_resid: f64§slope_ci_low: f64§slope_ci_high: f64§sample_count: usize§ratio_mean: f64§ratio_std: f64Trait Implementations§
Source§impl Clone for StructuralLawSummaryRow
impl Clone for StructuralLawSummaryRow
Source§fn clone(&self) -> StructuralLawSummaryRow
fn clone(&self) -> StructuralLawSummaryRow
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for StructuralLawSummaryRow
impl RefUnwindSafe for StructuralLawSummaryRow
impl Send for StructuralLawSummaryRow
impl Sync for StructuralLawSummaryRow
impl Unpin for StructuralLawSummaryRow
impl UnsafeUnpin for StructuralLawSummaryRow
impl UnwindSafe for StructuralLawSummaryRow
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