pub trait AffineCoordinates {
type FieldRepr: AsRef<[u8]>;
// Required methods
fn x(&self) -> Self::FieldRepr;
fn y_is_odd(&self) -> Choice;
}Expand description
Access to the affine coordinates of an elliptic curve point.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".