pub(super) trait InnerFieldType {
const FIELD_TYPE: FieldType;
// Required method
fn to_field_value(&self) -> String;
}
Expand description
Trait to define field type and value conversion for inner field types
Required Associated Constants§
const FIELD_TYPE: FieldType
Required Methods§
fn to_field_value(&self) -> String
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.