This create exists to encode & decode data types with a finite
number of representations. English please! Okay, okay, this
crates allows you to convert your data types into numbers & back
(or any other data type that implements FiniteValue
), assuming
the number of possible representations for that data type can be
counted with the type you are encoding too.
Probably not, probably just stick with serde.
This crate has alpha levels of reliablity & isn't likley to be the most efficent approach to encode data in your appplication.
It will also panic if you encode a large type into a small data type in some cases, so...
I would recommend deriving the implementations, instead writing them by hand to ensure they're isomorphic & correct.
```rs // If you choose to import it, this is how you would do so. use finite_repr::{FiniteRepr, FiniteDecoding, FiniteEncoding};
// You would probalby want to derive the implementations // for the types that use these traits, this ensures the // implementations are isomorphic.
struct Character(pub RpgClass, pub Faction);
enum RpgClass { Mage, Knight }
enum Faction { GoodGuysLtm, ComicallyEvilBadGuyTeam, AntagonistWhoMakesYouQuestionYourOwnSenseOfMoralityDotCom, }
impl PartialEq for Character { /* ... */ }
fn main() {
let mycharacter = Character(RpgClass::Mage, Faction::GoodGuysLtm);
let encoded = mycharacter.intofinite::
// This assertion will be true. asserteq!(Some(mycharacter), decoded); }
```
I thought it would be fun to work on, but also I wanted a way to encode some data types with very limited possible representations in my game as numbers, as I was passing them through a trait object & couldn't make it generic. It was a side project where finishing the project was optional.
The code from the macros could be better.
The crate is likely misusing usize
in VariantReprs
, &
should probalby be replaced with a type whose size does
not vary. I'll replace this eventually but atm I just
want to start using this crate in my code.
No support for union types, it coudld probably be added but it just doesn't exist at this point in time.
It doesn't always gracefully handle failure in the event of an integer overflow.
This crate likely isn't suitable for encoding data that has
a large amount of representations, such as a u128
or even
(u32, u32)
,