pub trait Identity {
// Required method
fn identity() -> Self;
}
Expand description
Trait for getting the identity element of a point type.
Required Methods§
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§
impl Identity for AffineNielsPoint
impl Identity for ProjectiveNielsPoint
impl Identity for ProjectivePoint
impl Identity for CachedPoint
Available on
nightly
and curve25519_dalek_backend="simd"
only.impl Identity for ExtendedPoint
Available on
nightly
and curve25519_dalek_backend="simd"
only.