pub trait SettableField<const I: u8>: NativeElement {
type Type: Clone;
const FIELD: SettableFieldData<Self, I>;
}Expand description
A field that has a default value and can be configured via a set rule, but can also present on elements and be present in the constructor.
Required Associated Constants§
const FIELD: SettableFieldData<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.