structmap
structmap copied to clipboard
Procedural macro crate for conversion between Rust structs and associative containers.
This crate would be really neat if it used generics – for example, one might want to convert an `http::HeaderMap` to a struct. In this vein, the term `GenericMap` is...
Missing `structmap-derive` dependency in section `Usage` of the `Readme.md` file . ```toml [dependencies] structmap = "0.1" structmap-derive = "0.1.5" ```
Implemented from_stringmap functionality. Removed Panic from struct field not found, panic at this point its very hard to handle. Shoult i add a new parameter to configure the panic handling...
Using serde `rename` causes proc-macro panic. Maybe avoid using `rename` field macro and change it to the `structmap` instead? Actually any macro (serde default, serde rename, utoipa schema…) causes ```...