A tiny library to declaratively define endianness in a portable way, for IO.
Allows an easy `.native()` method to convert to native endianness.
```rust
struct SomeStruct {
}
let foo = SomeStruct {
};
assert_eq!(foo.first.native() + foo.second.native(), 513 + 33_620_225)
```