pub trait TDist {
// Required methods
fn t_pdf(&self, df: Self) -> Self;
fn t_cdf(&self, df: isize) -> Self;
fn t_cdf_inv(&self, df: isize) -> Self;
}
Expand description
Implementations of the student’s t distribution as a trait
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.