5 releases

0.4.3 Oct 16, 2024
0.4.2 Oct 14, 2024
0.4.0 Sep 22, 2024
0.3.5 Sep 21, 2024
0.1.8 Sep 19, 2024

#1934 in Encoding

Download history 17/week @ 2024-09-30 125/week @ 2024-10-07 631/week @ 2024-10-14 187/week @ 2024-10-21 105/week @ 2024-10-28 77/week @ 2024-11-04 26/week @ 2024-11-11 9/week @ 2024-11-18 26/week @ 2024-12-09 1/week @ 2024-12-16

1,677 downloads per month

MIT license

22KB
485 lines

le-stream

Serialize and deserialize object to/from little-endian byte streams.

Example

use le_stream::{FromLeStream, ToLeStream};

fn main() {
    let i: i32 = 1234;
    let bytes: [u8; 4] = [0xd2, 0x04, 0x00, 0x00];

    for (byte, target) in i.to_le_stream().zip(bytes) {
        assert_eq!(byte, target);
    }

    let bytes: [u8; 4] = [0xd2, 0x04, 0x00, 0x00];
    let target: i32 = 1234;
    assert_eq!(i32::from_le_stream(&mut bytes.into_iter()), Some(target));
}

Contribution guidelines

  • Use cargo fmt
  • Check code with cargo clippy

lib.rs:

A library for reading and writing data in little-endian byte order.

Dependencies

~435–580KB
~12K SLoC