pub trait StandardDeviation<'a>:
Copy
+ Mean<'a, Self>
+ Sum<&'a Self>
+ Sum
+ Div<Output = Self>
+ Sub<Output = Self>
+ Mul<Output = Self>where
Self: 'a,{
// Required methods
fn one() -> Self;
fn sqrt(self) -> Self;
fn max(self, other: Self) -> Self;
}
Expand description
Helper-trait for types used by standard_deviation
.
This is implemented generically when the feature generic-impl
is enabled.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.