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
use core::ops;
#[cfg(feature = "std")]
use std::borrow::Cow;
#[derive(Clone, Debug)]
pub struct CowBytes<'a>(Imp<'a>);
#[cfg(feature = "std")]
#[derive(Clone, Debug)]
struct Imp<'a>(Cow<'a, [u8]>);
#[cfg(not(feature = "std"))]
#[derive(Clone, Debug)]
struct Imp<'a>(&'a [u8]);
impl<'a> ops::Deref for CowBytes<'a> {
type Target = [u8];
fn deref(&self) -> &[u8] {
self.as_slice()
}
}
impl<'a> CowBytes<'a> {
pub fn new<B: ?Sized + AsRef<[u8]>>(bytes: &'a B) -> CowBytes<'a> {
CowBytes(Imp::new(bytes.as_ref()))
}
#[cfg(feature = "std")]
pub fn new_owned(bytes: Vec<u8>) -> CowBytes<'static> {
CowBytes(Imp(Cow::Owned(bytes)))
}
pub fn as_slice(&self) -> &[u8] {
self.0.as_slice()
}
#[cfg(feature = "std")]
pub fn into_owned(self) -> CowBytes<'static> {
match (self.0).0 {
Cow::Borrowed(b) => CowBytes::new_owned(b.to_vec()),
Cow::Owned(b) => CowBytes::new_owned(b),
}
}
}
impl<'a> Imp<'a> {
#[cfg(feature = "std")]
pub fn new(bytes: &'a [u8]) -> Imp<'a> {
Imp(Cow::Borrowed(bytes))
}
#[cfg(not(feature = "std"))]
pub fn new(bytes: &'a [u8]) -> Imp<'a> {
Imp(bytes)
}
#[cfg(feature = "std")]
pub fn as_slice(&self) -> &[u8] {
match self.0 {
Cow::Owned(ref x) => x,
Cow::Borrowed(x) => x,
}
}
#[cfg(not(feature = "std"))]
pub fn as_slice(&self) -> &[u8] {
self.0
}
}