pub trait Point: Element {
// Required methods
fn map(&mut self, dst: DST, message: &[u8]);
fn msm(points: &[Self], scalars: &[Scalar]) -> Self;
}
Expand description
A point on a curve.
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.