| Crates.io | seqbytes |
| lib.rs | seqbytes |
| version | 0.1.1 |
| created_at | 2022-03-12 01:39:21.747576+00 |
| updated_at | 2022-03-12 02:26:47.161474+00 |
| description | Provides traits for reading bytes sequentially |
| homepage | |
| repository | https://github.com/Bluheir/seqbytes |
| max_upload_size | |
| id | 548580 |
| size | 38,571 |
The seqbytes crate provides the traits ESeqByteReader and SeqByteReader used for reading bytes sequentially. The SeqByteReader trait convert the bytes into the
specified generic type, denoted U, which must implement SizedNumber. The trait SizedNumber represents a type which can be converted to and from bytes, with a
fixed size in bytes.
The trait ESeqByteReader is used for reading bytes sequentially, converting to a type with a specific endianness. The type converted to must implement EndianNumber,
which represents a type which can be converted to and from bytes with a specific endianness.
The traits ESeqByteReader and SeqByteReader are implemented by default on types implementing Read + Seek.
use seqbytes::prelude::*;
use std::io::Cursor;
let a = vec![69, 96, 255, 255, 0x68, 0x65, 0x6C, 0x6C, 0x6F];
let mut cursor = Cursor::new(a);
let num: i32 = cursor.shift().unwrap();
let s = &*cursor.shift_string(5).unwrap();
assert_eq!(num, -40891);
assert_eq!(*s, *"hello");
Add this to your Cargo.toml:
[dependencies]
seqbytes = "0.1.1"
seqbytes is distributed under the Apache v2.0 License.
See LICENSE.md for more details.