pub trait SynthesizedField<const I: u8>: NativeElement {
type Type: Clone;
const FIELD: SynthesizedFieldData<Self, I>;
}Expand description
A field that is initially unset, but may be set through a
Synthesize implementation.
Required Associated Constants§
const FIELD: SynthesizedFieldData<Self, I>
Required Associated Types§
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.