pub trait BesselFamily: Copy + Sealed { }Expand description
A Bessel family marker: J, Y, I, K, or one of them under Scaled.
The methods are the dispatch, one per (cylindrical/spherical) x (const/runtime order)
cell, each reaching the matching per-family hook on SpecializedSpecialMath. They are
#[doc(hidden)] because nothing outside the marker layer calls them: the public spelling
is bessel_n / bessel and
the sph_ pair. Cylindrical const orders are i32 (the families reflect at negative
order), spherical ones usize.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".