pub trait HasAffineXY: Curve + HasAffineX + HasAffineY {
    // Required methods
    fn x_and_y(
        point: &Self::Point
    ) -> Option<(Self::CoordinateArray, Self::CoordinateArray)>;
    fn from_x_and_y(
        x: &Self::CoordinateArray,
        y: &Self::CoordinateArray
    ) -> Option<Self::Point>;
}

Required Methods§

source

fn x_and_y( point: &Self::Point ) -> Option<(Self::CoordinateArray, Self::CoordinateArray)>

source

fn from_x_and_y( x: &Self::CoordinateArray, y: &Self::CoordinateArray ) -> Option<Self::Point>

Object Safety§

This trait is not object safe.

Implementors§