pub struct StructuralLawDiagnostics {
pub residual_mean: f64,
pub residual_std: f64,
pub residual_skew_approx: f64,
pub residual_kurtosis_approx: f64,
pub ratio_mean: f64,
pub ratio_std: f64,
pub ratio_min: f64,
pub ratio_max: f64,
}Expand description
Residual and ratio diagnostics for the AET-IWLT structural law.
Fields§
§residual_mean: f64§residual_std: f64§residual_skew_approx: f64§residual_kurtosis_approx: f64§ratio_mean: f64§ratio_std: f64§ratio_min: f64§ratio_max: f64Trait Implementations§
Source§impl Clone for StructuralLawDiagnostics
impl Clone for StructuralLawDiagnostics
Source§fn clone(&self) -> StructuralLawDiagnostics
fn clone(&self) -> StructuralLawDiagnostics
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 moreSource§impl Debug for StructuralLawDiagnostics
impl Debug for StructuralLawDiagnostics
impl Copy for StructuralLawDiagnostics
Auto Trait Implementations§
impl Freeze for StructuralLawDiagnostics
impl RefUnwindSafe for StructuralLawDiagnostics
impl Send for StructuralLawDiagnostics
impl Sync for StructuralLawDiagnostics
impl Unpin for StructuralLawDiagnostics
impl UnsafeUnpin for StructuralLawDiagnostics
impl UnwindSafe for StructuralLawDiagnostics
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