pub trait LucasBase {
// Required method
fn generate<T: Integer>(
&self,
n: &Odd<T>,
) -> Result<(Word, Word, bool), Primality>;
}Expand description
A method for selecting the base (P, Q) for the Lucas primality test.
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.