Skip to content

Instantly share code, notes, and snippets.

@ioncodes
Created February 5, 2018 19:57
Show Gist options
  • Save ioncodes/2534a73d964ff3814637063da1b68ab5 to your computer and use it in GitHub Desktop.
Save ioncodes/2534a73d964ff3814637063da1b68ab5 to your computer and use it in GitHub Desktop.
Convert u32 to u8 slice with Big Endian and Little Endian support!
let bytes: [u8; 4] = unsafe { transmute(0u32.to_le()) }; // or to_be
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment