pub trait IntoFieldValue {
// Required method
fn into_field_value(self) -> FieldValue;
}Expand description
Converts ordinary Rust values into FieldValue replacements.
Required Methods§
Sourcefn into_field_value(self) -> FieldValue
fn into_field_value(self) -> FieldValue
Converts this value into a FieldValue.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".