cracode 1.0.1

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

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