Nora endian
Yet another crate to deal with endianness, though focused on simplicity
Example
use u32le;
let flags = from;
let index = from;
// Easy operations on & comparisons between le/be and native types
if flags & 1 == 0
let index_plus_one_u32: u32 = 1 + index;
let index_plus_one_u32le: u32le = index + 1;