pub trait HtmlControls {
    fn generate_html(
        fields_name: &Vec<String>,
        map_widgets: &HashMap<String, Widget>
    ) -> Result<String, Box<dyn Error>> { ... } fn output_data_to_html(&self) -> Result<String, Box<dyn Error>> { ... } }

Provided Methods

Rendering HTML-controls code for Form. ( If necessary, customize the code generation yourself using html and css from Bootstrap, Material Design, etc. )

Implementors