pub trait NumWords: Clone + Debug {
type WordsFieldElement: ArrayLength + Debug;
type WordsCurvePoint: ArrayLength + Debug;
}Expand description
Trait that holds number of words needed to represent a field element and a curve point.
Required Associated Types§
sourcetype WordsFieldElement: ArrayLength + Debug
type WordsFieldElement: ArrayLength + Debug
The number of words needed to represent a field element.
sourcetype WordsCurvePoint: ArrayLength + Debug
type WordsCurvePoint: ArrayLength + Debug
The number of words needed to represent a curve point (two field elements).
Object Safety§
This trait is not object safe.