pub trait Beta {
// Required methods
fn beta(&self, other: Self) -> Self;
fn lbeta(&self, other: Self) -> Self;
fn ibeta(&self, a: Self, b: Self) -> Self;
fn ibeta_inv(&self, a: Self, b: Self) -> Self;
}
Expand description
Implementations of beta functions 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.