pub trait SmallFactor {
// Required method
fn is_torsion_free(&self) -> Choice;
}Expand description
Checks whether a point has small factor
Required Methods§
Sourcefn is_torsion_free(&self) -> Choice
fn is_torsion_free(&self) -> Choice
Checks whether a point has no small factor
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".