pub struct QuadraticApproximationPredictionMetrics<T: ComplexFloat> {
pub mean_absolute_error: T::Real,
pub mean_squared_error: T::Real,
pub root_mean_squared_error: T::Real,
pub r_squared: T::Real,
pub adjusted_r_squared: T::Real,
}Fields§
§mean_absolute_error: T::Real§mean_squared_error: T::Real§root_mean_squared_error: T::Real§r_squared: T::Real§adjusted_r_squared: T::RealTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for QuadraticApproximationPredictionMetrics<T>
impl<T> RefUnwindSafe for QuadraticApproximationPredictionMetrics<T>
impl<T> Send for QuadraticApproximationPredictionMetrics<T>
impl<T> Sync for QuadraticApproximationPredictionMetrics<T>
impl<T> Unpin for QuadraticApproximationPredictionMetrics<T>
impl<T> UnsafeUnpin for QuadraticApproximationPredictionMetrics<T>
impl<T> UnwindSafe for QuadraticApproximationPredictionMetrics<T>
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