Add macro Serde
to bincode to make it easier to use.
cargo add bincode_macro
``` use bincode::{error, Decode, Encode}; use bincode_macro::Serde;
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);
} ```