remove the FS and CX generics

This commit is contained in:
2024-06-12 18:44:43 -05:00
parent e371ff748b
commit fac8e515f6
19 changed files with 114 additions and 103 deletions
+1 -3
View File
@@ -90,9 +90,7 @@ pub trait FormToolData: Clone + 'static {
/// Uses the given form builder to specify what fields should be present
/// in the form, what properties those fields should have, and how that
/// data should be parsed and checked.
fn build_form(
fb: FormBuilder<Self, Self::Style, Self::Context>,
) -> FormBuilder<Self, Self::Style, Self::Context>;
fn build_form(fb: FormBuilder<Self>) -> FormBuilder<Self>;
/// Constructs a [`Form`] for this [`FormToolData`] type.
///