pub trait FormState<T> { // Required method fn parse(&self) -> Result<T, ()>; }
An object representing a form (the state of the form).
Parse the elements into the resulting type.