pub trait BesselDual: DualNum<f64> + Copy {
// Provided methods
fn bessel_j0(self) -> Self { ... }
fn bessel_j1(self) -> Self { ... }
fn bessel_j2(self) -> Self { ... }
}
Expand description
Implementation of bessel functions for double precision (hyper) dual numbers.
Provided 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.