pub trait HtmlControls {
    fn generate_html(
        fields_name: &Vec<String>,
        map_widgets: HashMap<String, Widget>
    ) -> String { ... } fn to_html(&self) -> String { ... } }

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