You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
I think the majority of enum discriminants are less than 128. A very simple variable length encoding like encode <128 as one byte and >=128 as four bytes would address most concerns from people who are astonished that Bincode encodes their 2-variant enum with [0x00, 0x00, 0x00, 0x00] and [0x00, 0x00, 0x00, 0x01] tags.