binprot 0.1.7

Rust implementation of the bin_prot protocol.
Documentation
1
2
3
4
5
6
// This test checks that binprot_derive macros do not have
// issues with some BinProt traits not being imported
use binprot::macros::{BinProtRead, BinProtWrite};

#[derive(BinProtRead, BinProtWrite, Debug, PartialEq)]
struct Pancakes(i64);