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