pub trait CurveAffineExt: CurveAffine {
// Provided method
fn into_coordinates(self) -> (Self::Base, Self::Base) { ... }
}
Provided Methods§
Sourcefn into_coordinates(self) -> (Self::Base, Self::Base)
fn into_coordinates(self) -> (Self::Base, Self::Base)
Unlike the Coordinates
trait, this just returns the raw affine coordinates without checking is_on_curve
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.