pub trait SubgroupCheck {
// Required method
fn in_subgroup(&self) -> bool;
}Required Methods§
Sourcefn in_subgroup(&self) -> bool
fn in_subgroup(&self) -> bool
subgroup membership check using classical method: i.e., raise to the power of group order
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".