bincode-next 2.1.0

A binary serialization / deserialization strategy for transforming structs into bytes and vice versa!
Documentation
1
2
3
4
5
6
7
8
9
#![cfg(feature = "derive")]
#![allow(dead_code)]

extern crate bincode_next as bincode;

#[derive(bincode::Encode, bincode::Decode)]
pub struct Eg<D, E> {
    data: (D, E),
}