Description

Add macro Serde to bincode to make it easier to use.

Install

cargo add bincode_macro

Usage

``` use bincode::{error, Decode, Encode}; use bincode_macro::Serde;

[derive(Serde, Encode, Decode, PartialEq, Debug)]

pub struct Entity { pub x: u16, pub y: u32, }

fn main() { let mut entity = Entity { x: 1, y: 4 };

let encoded: Vec<u8> = entity.pack().unwrap();
println!("{:?} {}", encoded, encoded.len());

let (decoded, len): (Entity, usize) = entity.unpack(&encoded).unwrap();
println!("{:?}, {}\n", decoded, len);

} ```

Run

cd bincode_macro_usage cargo run