pub trait ScalarEngine: 'static + Sized + Clone + Copy + Send + Sync + Debug {
    type Fr: PrimeField + SqrtField;
}
Expand description

An “engine” is a collection of types (fields, elliptic curve groups, etc.) with well-defined relationships. Specific relationships (for example, a pairing-friendly curve) can be defined in a subtrait.

Required Associated Types

This is the scalar field of the engine’s groups.

Implementors