curve25519_dalek::traits

Trait Identity

Source
pub trait Identity {
    // Required method
    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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§