Both of these produce an error "invalid type: string "::indexmap::IndexMap", expected a borrowed string"
typify::import_types!(schema = "schema.json", map_type = "::indexmap::IndexMap");
typify::import_types!(schema = "schema.json", map_type = ::indexmap::IndexMap);
Is there a way to override map type while using the macro?
Both of these produce an error "invalid type: string "::indexmap::IndexMap", expected a borrowed string"
Is there a way to override map type while using the macro?