rmp 0.8.15

Pure Rust MessagePack serialization implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod array;
mod bin;
mod bool;
mod ext;
mod float;
mod map;
mod null;
mod sint;
mod string;
mod uint;

#[cfg(feature = "std")]
pub type Cursor<'a> = std::io::Cursor<&'a [u8]>;
#[cfg(not(feature = "std"))]
pub type Cursor<'a> = rmp::decode::Bytes<'a>;