numutil
numutil is a small utility crate for making numeric type conversions easier in generic contexts. Implements the following:
T<--->[u8; size_of::<T>()]for the core types that implement to/from ne/le/be bytes methods. Exposed with traitByteConversion.Vec<T><--->Vec<u8>For the types implementingByteConversion. Exposed with traitVecByteConversion.TasUandUasTfor any pairing ofTandUthat you could normally do this with in concretely typed contexts. Exposed asLossyCast<U>::_as(self) -> UandLossyCast<U>::_from(U) -> Self