byteable 0.11.1

A Rust crate for convenient serialization and deserialization of byte-oriented data.
Documentation
1
2
3
4
5
6
7
8
use tokio::io::{AsyncWriteExt, AsyncReadExt};
use std::io::Cursor;

#[tokio::main]
async fn main() {
    let mut cursor = Cursor::new(vec![]);
    cursor.write_all(b"test").await.unwrap();
}