Byte
A low-level, zero-copy, panic-free, binary serializer and deserializer
This crate is inspired by m4b/scroll
First, add the following to your Cargo.toml
:
toml
[dependencies]
byte = "0.2"
Next, add this to your crate root:
rust
extern crate byte;
Byte
is no_std
library; it can directly be used in a #![no_std]
situation or crate.
Byte
is mainly used to encode and decode binary data with standard or protocol,
such as network TCP packages and hardware communication packages.
It's similar to crate nom
but more ligthweight and specialized for operating binary in low-level and hardware programing.
Byte
delivers two core traits TryRead
and TryWrite
.
Types implement these traits can be serialize into or deserialize from byte slices.
Byte slices [u8]
derives methods read()
and write()
to serialize, deserialize and handle offset.
Small and general is kept in mind in this library.
For example, Byte
can take byte slice from MMap to read binary file,
or take heap-allocated byte buffer from Bytes.
```rust use byte::*;
let bytes: &[u8] = &[0xde, 0xad, 0xbe, 0xef];
let offset = &mut 0;
let num = bytes.readwith::
```rust use byte::*; use byte::ctx::{Str, NULL};
let bytes: &[u8] = b"hello, world!\0dump";
let offset = &mut 0; let str = bytes.readwith::<&str>(offset, Str::Delimiter(NULL)).unwrap(); asserteq!(str, "hello, world!"); assert_eq!(*offset, 14); ```
All kinds of contribution are welcomed.
Licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)