msgpacker 0.4.8

MessagePack protocol implementation for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::{helpers, Error, Format, Unpackable};

#[cfg(feature = "alloc")]
mod binary;
mod collections;
mod common;
mod float;
mod int;

pub use collections::{unpack_array, unpack_array_iter, unpack_map, unpack_map_iter};