pub trait FieldAlg: Sorts {
// Required methods
fn field(&self, words: Words<'_>, shape: Self::Ty) -> Self::Field;
fn merge(&self, shape: Self::Ty) -> Self::Field;
}Expand description
The member sort: the ways one member of a product arises.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".