@@ -10,11 +10,16 @@ use crate::sys_common::wtf8::{Wtf8, Wtf8Buf, check_utf8_boundary};
10
10
use crate :: sys_common:: { AsInner , FromInner , IntoInner } ;
11
11
use crate :: { fmt, mem} ;
12
12
13
- #[ derive( Clone , Hash ) ]
13
+ #[ derive( Hash ) ]
14
14
pub struct Buf {
15
15
pub inner : Wtf8Buf ,
16
16
}
17
17
18
+ #[ repr( transparent) ]
19
+ pub struct Slice {
20
+ pub inner : Wtf8 ,
21
+ }
22
+
18
23
impl IntoInner < Wtf8Buf > for Buf {
19
24
fn into_inner ( self ) -> Wtf8Buf {
20
25
self . inner
@@ -35,31 +40,38 @@ impl AsInner<Wtf8> for Buf {
35
40
}
36
41
37
42
impl fmt:: Debug for Buf {
38
- fn fmt ( & self , formatter : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
39
- fmt:: Debug :: fmt ( self . as_slice ( ) , formatter )
43
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
44
+ fmt:: Debug :: fmt ( self . as_slice ( ) , f )
40
45
}
41
46
}
42
47
43
48
impl fmt:: Display for Buf {
44
- fn fmt ( & self , formatter : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
45
- fmt:: Display :: fmt ( self . as_slice ( ) , formatter )
49
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
50
+ fmt:: Display :: fmt ( self . as_slice ( ) , f )
46
51
}
47
52
}
48
53
49
- #[ repr( transparent) ]
50
- pub struct Slice {
51
- pub inner : Wtf8 ,
52
- }
53
-
54
54
impl fmt:: Debug for Slice {
55
- fn fmt ( & self , formatter : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
56
- fmt:: Debug :: fmt ( & self . inner , formatter )
55
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
56
+ fmt:: Debug :: fmt ( & self . inner , f )
57
57
}
58
58
}
59
59
60
60
impl fmt:: Display for Slice {
61
- fn fmt ( & self , formatter : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
62
- fmt:: Display :: fmt ( & self . inner , formatter)
61
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
62
+ fmt:: Display :: fmt ( & self . inner , f)
63
+ }
64
+ }
65
+
66
+ impl Clone for Buf {
67
+ #[ inline]
68
+ fn clone ( & self ) -> Self {
69
+ Buf { inner : self . inner . clone ( ) }
70
+ }
71
+
72
+ #[ inline]
73
+ fn clone_from ( & mut self , source : & Self ) {
74
+ self . inner . clone_from ( & source. inner )
63
75
}
64
76
}
65
77
@@ -74,62 +86,57 @@ impl Buf {
74
86
unsafe { Self { inner : Wtf8Buf :: from_bytes_unchecked ( s) } }
75
87
}
76
88
77
- pub fn with_capacity ( capacity : usize ) -> Buf {
78
- Buf { inner : Wtf8Buf :: with_capacity ( capacity) }
79
- }
80
-
81
- pub fn clear ( & mut self ) {
82
- self . inner . clear ( )
83
- }
84
-
85
- pub fn capacity ( & self ) -> usize {
86
- self . inner . capacity ( )
89
+ #[ inline]
90
+ pub fn into_string ( self ) -> Result < String , Buf > {
91
+ self . inner . into_string ( ) . map_err ( |buf| Buf { inner : buf } )
87
92
}
88
93
94
+ #[ inline]
89
95
pub fn from_string ( s : String ) -> Buf {
90
96
Buf { inner : Wtf8Buf :: from_string ( s) }
91
97
}
92
98
93
- pub fn as_slice ( & self ) -> & Slice {
94
- // SAFETY: Slice is just a wrapper for Wtf8,
95
- // and self.inner.as_slice() returns &Wtf8.
96
- // Therefore, transmuting &Wtf8 to &Slice is safe.
97
- unsafe { mem:: transmute ( self . inner . as_slice ( ) ) }
99
+ #[ inline]
100
+ pub fn with_capacity ( capacity : usize ) -> Buf {
101
+ Buf { inner : Wtf8Buf :: with_capacity ( capacity) }
98
102
}
99
103
100
- pub fn as_mut_slice ( & mut self ) -> & mut Slice {
101
- // SAFETY: Slice is just a wrapper for Wtf8,
102
- // and self.inner.as_mut_slice() returns &mut Wtf8.
103
- // Therefore, transmuting &mut Wtf8 to &mut Slice is safe.
104
- // Additionally, care should be taken to ensure the slice
105
- // is always valid Wtf8.
106
- unsafe { mem:: transmute ( self . inner . as_mut_slice ( ) ) }
104
+ #[ inline]
105
+ pub fn clear ( & mut self ) {
106
+ self . inner . clear ( )
107
107
}
108
108
109
- pub fn into_string ( self ) -> Result < String , Buf > {
110
- self . inner . into_string ( ) . map_err ( |buf| Buf { inner : buf } )
109
+ #[ inline]
110
+ pub fn capacity ( & self ) -> usize {
111
+ self . inner . capacity ( )
111
112
}
112
113
114
+ #[ inline]
113
115
pub fn push_slice ( & mut self , s : & Slice ) {
114
116
self . inner . push_wtf8 ( & s. inner )
115
117
}
116
118
119
+ #[ inline]
117
120
pub fn reserve ( & mut self , additional : usize ) {
118
121
self . inner . reserve ( additional)
119
122
}
120
123
124
+ #[ inline]
121
125
pub fn try_reserve ( & mut self , additional : usize ) -> Result < ( ) , TryReserveError > {
122
126
self . inner . try_reserve ( additional)
123
127
}
124
128
129
+ #[ inline]
125
130
pub fn reserve_exact ( & mut self , additional : usize ) {
126
131
self . inner . reserve_exact ( additional)
127
132
}
128
133
134
+ #[ inline]
129
135
pub fn try_reserve_exact ( & mut self , additional : usize ) -> Result < ( ) , TryReserveError > {
130
136
self . inner . try_reserve_exact ( additional)
131
137
}
132
138
139
+ #[ inline]
133
140
pub fn shrink_to_fit ( & mut self ) {
134
141
self . inner . shrink_to_fit ( )
135
142
}
@@ -139,6 +146,24 @@ impl Buf {
139
146
self . inner . shrink_to ( min_capacity)
140
147
}
141
148
149
+ #[ inline]
150
+ pub fn as_slice ( & self ) -> & Slice {
151
+ // SAFETY: Slice is just a wrapper for Wtf8,
152
+ // and self.inner.as_slice() returns &Wtf8.
153
+ // Therefore, transmuting &Wtf8 to &Slice is safe.
154
+ unsafe { mem:: transmute ( self . inner . as_slice ( ) ) }
155
+ }
156
+
157
+ #[ inline]
158
+ pub fn as_mut_slice ( & mut self ) -> & mut Slice {
159
+ // SAFETY: Slice is just a wrapper for Wtf8,
160
+ // and self.inner.as_mut_slice() returns &mut Wtf8.
161
+ // Therefore, transmuting &mut Wtf8 to &mut Slice is safe.
162
+ // Additionally, care should be taken to ensure the slice
163
+ // is always valid Wtf8.
164
+ unsafe { mem:: transmute ( self . inner . as_mut_slice ( ) ) }
165
+ }
166
+
142
167
#[ inline]
143
168
pub fn leak < ' a > ( self ) -> & ' a mut Slice {
144
169
unsafe { mem:: transmute ( self . inner . leak ( ) ) }
@@ -194,6 +219,7 @@ impl Slice {
194
219
}
195
220
196
221
#[ track_caller]
222
+ #[ inline]
197
223
pub fn check_public_boundary ( & self , index : usize ) {
198
224
check_utf8_boundary ( & self . inner , index) ;
199
225
}
@@ -203,18 +229,22 @@ impl Slice {
203
229
unsafe { mem:: transmute ( Wtf8 :: from_str ( s) ) }
204
230
}
205
231
232
+ #[ inline]
206
233
pub fn to_str ( & self ) -> Result < & str , crate :: str:: Utf8Error > {
207
234
self . inner . as_str ( )
208
235
}
209
236
237
+ #[ inline]
210
238
pub fn to_string_lossy ( & self ) -> Cow < ' _ , str > {
211
239
self . inner . to_string_lossy ( )
212
240
}
213
241
242
+ #[ inline]
214
243
pub fn to_owned ( & self ) -> Buf {
215
244
Buf { inner : self . inner . to_owned ( ) }
216
245
}
217
246
247
+ #[ inline]
218
248
pub fn clone_into ( & self , buf : & mut Buf ) {
219
249
self . inner . clone_into ( & mut buf. inner )
220
250
}
@@ -224,6 +254,7 @@ impl Slice {
224
254
unsafe { mem:: transmute ( self . inner . into_box ( ) ) }
225
255
}
226
256
257
+ #[ inline]
227
258
pub fn empty_box ( ) -> Box < Slice > {
228
259
unsafe { mem:: transmute ( Wtf8 :: empty_box ( ) ) }
229
260
}
0 commit comments