pub trait ProjectableToField<F: PrimeField> {
// Required method
fn prepare_projection(
sampled_value: &F,
) -> impl Fn(&Self) -> F + Send + Sync + 'static;
}Expand description
Trait for preparing a projection function to a field element from a current type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.