pub trait RealErrorFunctions {
// Required methods
fn erfcx(self) -> Self;
fn erf(self) -> Self;
fn w_im(self) -> Self;
fn erfi(self) -> Self;
fn erfc(self) -> Self;
fn dawson(self) -> Self;
}
Required Methods§
fn erfcx(self) -> Self
fn erf(self) -> Self
fn w_im(self) -> Self
fn erfi(self) -> Self
fn erfc(self) -> Self
fn dawson(self) -> Self
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.