html_form_struct 0.1.0

Generate a struct from an HTML form.
Documentation
/// Generate a struct from an HTML form.
///
/// # Arguments
///
/// - `path`: Path to the HTML file
/// - `form`: CSS form selector
/// - `name`: Struct name
///
/// # Example
///
/// ```ignore
/// # use html_form_struct::form_struct;
///
/// form_struct! {
///     "path/to/form.html",
///     "form#my-form",
///     MyForm
/// }
/// ```
pub use html_form_struct_macro::form_struct;