pub trait HasAffineX: Curve {
    // Required method
    fn x(point: &Self::Point) -> Option<Self::CoordinateArray>;
}

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§