pub trait Field {
type Elem: Elem + RootsOfUnity;
type ExtElem: ExtElem<SubElem = Self::Elem>;
}Expand description
A pair of fields, one of which is an extension field of the other.
Required Associated Types§
Sourcetype Elem: Elem + RootsOfUnity
type Elem: Elem + RootsOfUnity
An element of the base field
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".