This crate only contains 4 functions: i
write_be
: write number to big-endian slice.
read_be
: read number from big-endian slice.
write_le
: write number to little-endian slice.
read_le
: read number from little-endian slice.
Please notice that byte-io does NOT focus on efficiency, which means that it may be slow while handling big streams (e.g. hundreds of Mbytes or more).
Add the following line to your [dependencies]
section in Cargo.toml
toml
byte-io = { git = "https://github.com/zhaihj/byte-io-rust", branch= "master" }
Read from a slice is simple:
``` use byte_io::*;
fn main() {
let data = [0x00, 0x00, 0x01, 0x01, 0xAB, 0xCD, 0xEF, 0x89];
asserteq!(readbe::
```
Write is also easy:
``` use byte_io::*;
fn main() { let mut buf = [0u8;8]; writebe(&0xABCDEFu32, &mut buf); asserteq!(buf, [0x00, 0xAB, 0xCD, 0xEF, 0x00, 0x00, 0x00, 0x00]); writele(&0xABCDEFu32, &mut buf[4..]); asserteq!(buf, [0x00, 0xAB, 0xCD, 0xEF, 0xEF, 0xCD, 0xAB, 0x00]); } ```
Moreover, you can even read/write Vec<T>
:
``` use byte_io::*;
fn main() {
let mut buf = [0u8;8];
let data = vec![0x1234u16,0x5678u16];
writele(&data, &mut buf);
asserteq!(buf, [0x34, 0x12, 0x78, 0x56, 0x00, 0x00, 0x00, 0x00]);
asserteq!(data, readle::
The following code also works:
``` use byte_io::*;
fn main() { let buf = [0xAA, 0xBB, 0xCC, 0xDD]; asserteq!(u32::fromu8_be(&buf), 0xAABBCCDD); } ```