html_form_actions 0.2.0

Generate HTML Form parsers and routing logic for Form Actions
Documentation
#![cfg(test)]

mod axum;
mod picoserve;

#[test]
fn derive_form_input_names() {
    #[derive(super::FormInputNames)]
    #[allow(dead_code)]
    struct TestStruct {
        value: i32,
        r#type: String,
    }

    let test_struct::Form {
        value_name: _,
        type_name: _,
    } = test_struct::FORM;
}