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
use crateBoxPack;
/// Used to deserialize the box's raw Data into a specific structure.
/// # Example
/// ```rust
/// use std::string::FromUtf8Error;
/// use bqsp::BoxPack;
/// use bqsp::deserializer::BoxDeserializer;
///
/// struct MyStruct {
/// message: String,
/// }
///
/// impl BoxDeserializer for MyStruct {
/// type Error = FromUtf8Error;
///
/// fn deserialize_box(data: BoxPack) -> Result<Self, Self::Error> where Self: Sized {
/// let bytes = data.data.as_ref();
/// String::from_utf8(bytes.to_vec())
/// .map(|string| MyStruct { message: string })
/// }
/// }
/// ```