Trait NamedCurve

Source
pub trait NamedCurve {
    const NAME: &'static str;
}
Expand description

Represents a curve that has a static name attached to it.

Required Associated Constants§

Source

const NAME: &'static str

A human readable name.

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.

Implementations on Foreign Types§

Source§

impl NamedCurve for Affine<LegacyPallasParameters>

Source§

const NAME: &'static str = "legacy_pallas"

Source§

impl NamedCurve for Affine<PallasParameters>

Source§

const NAME: &'static str = "pallas"

Source§

impl NamedCurve for Affine<LegacyVestaParameters>

Source§

const NAME: &'static str = "legacy_vesta"

Source§

impl NamedCurve for Affine<VestaParameters>

Source§

const NAME: &'static str = "vesta"

Source§

impl NamedCurve for Affine<Config>

Source§

const NAME: &'static str = "bn254"

Implementors§