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

A common interface for named signature suites.

Required Associated Constants

A unique identifier for the signatures created by this suite.

Implementors