(&mut self, additional: usize)
| 417 | |
| 418 | #[inline] |
| 419 | pub fn reserve_exact(&mut self, additional: usize) { |
| 420 | self.bytes.reserve_exact(additional) |
| 421 | } |
| 422 | |
| 423 | /// Tries to reserve the minimum capacity for exactly `additional` more |
| 424 | /// bytes to be inserted in the given `Wtf8Buf`. After calling |
no outgoing calls
no test coverage detected