pub trait EditableFieldType {
// Required method
fn field_type() -> FieldType;
}Expand description
A trait to associate the field structs with their field_type tag.
Required Methods§
Sourcefn field_type() -> FieldType
fn field_type() -> FieldType
The field_type value associated with the type
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".