config_struct icon indicating copy to clipboard operation
config_struct copied to clipboard

Deprecated: Use https://github.com/mistodon/edres instead.

Results 5 config_struct issues
Sort by recently updated
recently updated
newest added

Hello! 🐙 While scanning crates.io. we noticed a document-code mismatch issue in this crate, we think the doc examples are generally meant to illustrate why someone would want to use...

When compiling my project, I get invalid output; with errors such as > ``` > error: expected identifier, found keyword `type` > error: expected identifier, found keyword `move` > ```...

In my current project I'm using this crate for my standard config, but I have two fields that I have to do something custom for. Their values are replaced with...

Consider the below example : ``` { "my_structs": [ { "struct_with_a_and_b": { "a": 123 } }, { "struct_with_a_and_b": { "a": 111, "b": 123 } } ] } ``` Generated constant...

json_typegen!("pub Point", "http://example.com/someapi/point.json", { use_default_for_missing_fields, "/foo/bar": { use_type: "map" } }); Similar to how this tool does it https://github.com/evestera/json_typegen/blob/master/README.md

enhancement