pub struct DiagnosticsInput {
pub residuals_sorted: Vec<f64>,
pub theoretical_quantiles: Vec<f64>,
pub y_observed: Vec<f64>,
pub y_predicted: Vec<f64>,
pub calibration: Option<CalibrationData>,
}Fields§
§residuals_sorted: Vec<f64>§theoretical_quantiles: Vec<f64>§y_observed: Vec<f64>§y_predicted: Vec<f64>§calibration: Option<CalibrationData>Auto Trait Implementations§
impl Freeze for DiagnosticsInput
impl RefUnwindSafe for DiagnosticsInput
impl Send for DiagnosticsInput
impl Sync for DiagnosticsInput
impl Unpin for DiagnosticsInput
impl UnsafeUnpin for DiagnosticsInput
impl UnwindSafe for DiagnosticsInput
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