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
use std::fmt;
use std::ops::Deref;
use std::str;
use bytes::Bytes;
use clear::Clear;
#[derive(Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct Chars(Bytes);
impl Chars {
pub fn new() -> Chars {
Chars(Bytes::new())
}
pub fn from_bytes(bytes: Bytes) -> Result<Chars, str::Utf8Error> {
str::from_utf8(&bytes)?;
Ok(Chars(bytes))
}
pub fn len(&self) -> usize {
self.0.len()
}
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
}
impl<'a> From<&'a str> for Chars {
fn from(src: &'a str) -> Chars {
Chars(Bytes::copy_from_slice(src.as_bytes()))
}
}
impl From<String> for Chars {
fn from(src: String) -> Chars {
Chars(Bytes::from(src))
}
}
impl Default for Chars {
fn default() -> Self {
Chars::new()
}
}
impl Deref for Chars {
type Target = str;
fn deref(&self) -> &str {
unsafe { str::from_utf8_unchecked(&self.0) }
}
}
impl Clear for Chars {
fn clear(&mut self) {
self.0.clear();
}
}
impl fmt::Display for Chars {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(&**self, f)
}
}
impl fmt::Debug for Chars {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(&**self, f)
}
}
#[cfg(test)]
mod test {
use super::Chars;
#[test]
fn test_display_and_debug() {
let s = "test";
let string: String = s.into();
let chars: Chars = s.into();
assert_eq!(format!("{}", string), format!("{}", chars));
assert_eq!(format!("{:?}", string), format!("{:?}", chars));
}
}