pub trait IntoFormValueModel<T> {
// Required method
fn into_form_value_model(self) -> Model<T>;
}Expand description
Narrow interop bridge for form registries that track app-owned values in Model<T>.
This intentionally stays specific to the form registry surface rather than widening into a
crate-wide IntoModel<T> story.