PokeJofeJr4th
PokeJofeJr4th
You don't need to import the trait for the derive macro to work, so you can remove the `use std::str::FromStr;` line from the types file unless you need it there...
the build is only failing because the version of rust they're using is out of date
1. ChatGPT's best suggestion was `MyEnumTable`, which I kinda like 2. I did change the `all_ok` to what you suggested. However, for your exact case, would it be better to...
found a significant issue https://github.com/PokeJofeJr4th/strum/issues/8
Sorry, I see now that you have a perfectly fine fix (prepending `_`). I previously thought we'd have to figure out if it was a reserved keyword and use `r#`...
I like that but will the namespaces work on it? Would the user having macros like Serialize and Deserialize in the same scope as `#[derive(EnumTable)]` be enough?
That looks great! Would you like access to my version so we can start merging our implementations? 1. It should probably be the same as the base enum, as I...
lol I thought yours seemed more complete. I also don't really know what I'm doing with all these procedural macros. A lot of my stuff is probably cargo cult-ish, since...
As for your first two points, that sounds like you'd just have a wrapper around HashMap or BTreeMap. The main point for my application of this one is that there's...
I've updated my repo with some of June's code. Here's a list of important features I have working: - The derived `MyEnumMap` has a field of type `T` for each...