cu-bincode 2.0.2

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

extern crate cu_bincode as bincode;

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