pub trait EllipticKind {
type Output;
// Required method
fn eval<P: Policy>(self) -> Self::Output;
}Expand description
Legendre elliptic integral request, dual to CarlsonKind (see it for the named-field
rationale). The implementors are EllintK/EllintF (1st kind, complete/incomplete),
EllintE/EllintEInc (2nd kind), EllintD/EllintDInc, and
EllintPi/EllintPiInc (3rd kind). Completeness is encoded by the fields: a complete
integral has no phi.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".