Expand description
Derive macros to automatically implement the Parsable trait from token-parser for tuple structs (unnamed fields).
Supports sequential parsing via parse_list (Parsable derive) or symbol parsing via FromStr (SymbolParsable derive).
Derive Macrosยง
- Parsable
- Derive the
Parsabletrait by parsing all unnamed fields in order using theParsabletrait. - Symbol
Parsable - Derive the
Parsabletrait by parsing unnamed fields using theFromStrtrait.