[][src]Trait secp256kfun::marker::Normalized

pub trait Normalized: PointType {
    type YType;
}

A marker trait that indicates a PointType uses a affine internal representation.

Associated Types

type YType

Indicates what is known at compile time about the y-coordinate of the normalized point. It is either () or a YChoice.

Loading content...

Implementors

impl Normalized for BasePoint[src]

type YType = ()

impl Normalized for EvenY[src]

type YType = Self

impl Normalized for Normal[src]

type YType = ()

impl Normalized for SquareY[src]

type YType = Self

Loading content...