1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
extern crate self as zerompk;
use Vec;
pub use ;
pub use ;
pub use Value;
pub use Write;
extern crate alloc;
extern crate std;
pub use ;
/// A data structure that can be deserialized from MessagePack format.
/// A trait for types that can be deserialized from MessagePack format without borrowing.
/// A data structure that can be serialized into MessagePack format.
/// Deserializes a value of type `T` from a MessagePack-encoded byte slice.
///
/// ## Errors
///
/// Deserialization can fail if `T`'s implementation of `FromMessagePack` returns an error.
///
/// ## Examples
///
/// ```rust
/// #[derive(zerompk::FromMessagePack)]
/// struct Point {
/// x: i32,
/// y: i32,
/// }
///
/// fn main() {
/// let msgpack = vec![0x92, 0x01, 0x02];
/// let point: Point = zerompk::from_msgpack(&msgpack).unwrap();
/// assert_eq!(point.x, 1);
/// assert_eq!(point.y, 2);
/// }
/// ```
/// Serializes a value of type `T` into a `Vec<u8>` containing its MessagePack representation.
///
/// ## Errors
///
/// Serialization can fail if `T`'s implementation of `ToMessagePack` returns an error.
///
/// ## Examples
///
/// ```rust
/// #[derive(zerompk::ToMessagePack)]
/// struct Point {
/// x: i32,
/// y: i32,
/// }
///
/// fn main() {
/// let point = Point { x: 1, y: 2 };
/// let msgpack: Vec<u8> = zerompk::to_msgpack_vec(&point).unwrap();
/// assert_eq!(msgpack, vec![0x92, 0x01, 0x02]);
/// }
/// ```
/// Serializes a value of type `T` into the provided buffer, returning the number of bytes written.
///
/// ## Errors
///
/// Serialization can fail if `T`'s implementation of `ToMessagePack` returns an error,
/// or if the provided buffer is too small.
///
/// ## Examples
///
/// ```rust
/// #[derive(zerompk::ToMessagePack)]
/// struct Point {
/// x: i32,
/// y: i32,
/// }
///
/// fn main() {
/// let point = Point { x: 1, y: 2 };
/// let mut buf = [0u8; 10];
/// let bytes_written = zerompk::to_msgpack(&point, &mut buf).unwrap();
///
/// assert_eq!(bytes_written, 3);
/// assert_eq!(&buf[..bytes_written], &[0x92, 0x01, 0x02]);
/// }
/// ```
/// Serializes a value of type `T` into the I/O stream.
///
/// ## Errors
///
/// Serialization can fail if `T`'s implementation of `ToMessagePack` returns an error, or if the underlying I/O operation fails.
///
/// ## Examples
///
/// ```rust
/// #[derive(zerompk::ToMessagePack)]
/// struct Point {
/// x: i32,
/// y: i32,
/// }
///
/// fn main() {
/// let point = Point { x: 1, y: 2 };
///
/// let mut buf = Vec::new();
/// let mut cursor = std::io::Cursor::new(&mut buf);
///
/// zerompk::write_msgpack(&mut cursor, &point).unwrap();
/// }
/// ```
/// Deserializes a value of type `T` from the I/O stream.
///
/// ## Errors
///
/// Deserialization can fail if `T`'s implementation of `FromMessagePack` returns an error, or if the underlying I/O operation fails.
///
/// ## Examples
///
/// ```rust
/// #[derive(zerompk::FromMessagePack)]
/// struct Point {
/// x: i32,
/// y: i32,
/// }
///
/// fn main() {
/// let vec = vec![0x92, 0x01, 0x02];
/// let mut cursor = std::io::Cursor::new(vec);
///
/// let point: Point = zerompk::read_msgpack(&mut cursor).unwrap();
/// assert_eq!(point.x, 1);
/// assert_eq!(point.y, 2);
/// }
/// ```
/// Deserializes a value of type `T` from a buffered I/O stream.
///
/// Unlike [`read_msgpack`], this function reads directly from the slice exposed
/// by [`std::io::BufRead`]. Any bytes read ahead by the buffered reader remain
/// available through that same reader, so consecutive MessagePack values can
/// be decoded without losing data.
///
/// ## Errors
///
/// Deserialization can fail if `T`'s implementation of [`FromMessagePack`]
/// returns an error, or if the underlying I/O operation fails.
///
/// ## Examples
///
/// ```
/// let data = [0x01, 0x02];
/// let mut reader = std::io::BufReader::new(data.as_slice());
///
/// let first: u8 = zerompk::read_msgpack_bufread(&mut reader).unwrap();
/// let second: u8 = zerompk::read_msgpack_bufread(&mut reader).unwrap();
///
/// assert_eq!((first, second), (1, 2));
/// ```