pub trait Identity {
    fn identity() -> Self;
}
Expand description

Trait for getting the identity element of a point type.

Required Methods§

source

fn identity() -> Self

Returns the identity element of the curve. Can be used as a constructor.

Implementors§