8 releases

0.2.7 Feb 7, 2024
0.2.6 Apr 11, 2021
0.2.4 Jun 23, 2019
0.2.3 Mar 2, 2018
0.2.1 Jun 28, 2017

#1205 in Encoding

Download history 401/week @ 2024-01-02 1066/week @ 2024-01-09 865/week @ 2024-01-16 594/week @ 2024-01-23 677/week @ 2024-01-30 412/week @ 2024-02-06 359/week @ 2024-02-13 831/week @ 2024-02-20 497/week @ 2024-02-27 490/week @ 2024-03-05 562/week @ 2024-03-12 530/week @ 2024-03-19 484/week @ 2024-03-26 489/week @ 2024-04-02 800/week @ 2024-04-09 807/week @ 2024-04-16

2,707 downloads per month
Used in 15 crates (8 directly)

MIT/Apache

27KB
362 lines

Byte

build status crates.io docs.rs

A low-level, zero-copy and panic-free binary serializer and deserializer.

Documentation

Usage

Add the following to your Cargo.toml:

[dependencies]
byte = "0.2"

Byte is a no_std library; it can be used in any #![no_std] situation or crate.

Overview

Byte is designed to encode or decode binary data in a fast and low-level way. A classical use case is I2C communication en/decoding.

Byte provides two core traits TryRead and TryWrite. Types that implement these traits can be serialized into or deserialized from byte slices.

The library is meant to be simple, and it will always be.

Example

use byte::*;

let bytes: &[u8] = &[0xde, 0xad, 0xbe, 0xef];

let offset = &mut 0;
let num = bytes.read_with::<u32>(offset, BE).unwrap();
assert_eq!(num, 0xdeadbeef);
assert_eq!(*offset, 4);
use byte::*;
use byte::ctx::{Str, NULL};

let bytes: &[u8] = b"hello, world!\0dump";

let offset = &mut 0;
let str = bytes.read_with::<&str>(offset, Str::Delimiter(NULL)).unwrap();
assert_eq!(str, "hello, world!");
assert_eq!(*offset, 14);

Contribution

All kinds of contribution are welcomed.

  • Issues. Feel free to open an issue when you find typos, bugs, or have any question.
  • Pull requests. New collection, better implementation, more tests, more documents and typo fixes are all welcomed.

License

Licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)

No runtime deps