Trait rooting_forms::FormState
source · pub trait FormState<T> {
// Required methods
fn elements(&self) -> FormElements;
fn parse(&self) -> Result<T, ()>;
}Expand description
An object representing a form (the state of the form).
Required Methods§
sourcefn elements(&self) -> FormElements
fn elements(&self) -> FormElements
Get the elements for this form or subform.