[][src]Trait accumulator::util::TypeRep

pub trait TypeRep: 'static {
    type Rep: 'static;
    fn rep() -> &'static Self::Rep;
}

Pseudo-type-level programming. This trait allows us to reflect "type-level" (i.e. static) information at runtime.

Associated Types

type Rep: 'static

The associated type of the simulated type-level static information.

Loading content...

Required methods

fn rep() -> &'static Self::Rep

Returns the static data for the type.

Loading content...

Implementors

impl TypeRep for ClassGroup[src]

type Rep = Integer

impl TypeRep for Ristretto[src]

type Rep = ()

impl TypeRep for Rsa2048[src]

type Rep = Integer

Loading content...