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
#[cfg(feature = "serde_json_serializer")]
mod serde_serializer;
#[cfg(feature = "serde_json_serializer")]
pub use serde_serializer::SerdeSerializer;
#[cfg(feature = "serde_json_alternative_serializer")]
mod json_serializer;
#[cfg(feature = "serde_json_alternative_serializer")]
pub use decent_serde_json_alternative;
#[cfg(feature = "serde_json_alternative_serializer")]
pub use json;
#[cfg(feature = "serde_json_alternative_serializer")]
pub use json_serializer::JsonSerializer;
pub struct ByteSerializer {
ext: &'static str,
}
impl ByteSerializer {
#[no_coverage]
pub fn new(ext: &'static str) -> Self {
Self { ext }
}
}
impl crate::traits::Serializer for ByteSerializer {
type Value = Vec<u8>;
#[no_coverage]
fn is_utf8(&self) -> bool {
false
}
#[no_coverage]
fn extension(&self) -> &str {
self.ext
}
#[no_coverage]
fn from_data(&self, data: &[u8]) -> Option<Self::Value> {
Some(data.into())
}
#[no_coverage]
fn to_data(&self, value: &Self::Value) -> Vec<u8> {
value.clone()
}
}