(&self)
| 300 | |
| 301 | #[inline] |
| 302 | pub fn char_len(&self) -> usize { |
| 303 | match self.len.0.load(Relaxed) { |
| 304 | usize::MAX => self._compute_char_len(), |
| 305 | len => len, |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | #[cold] |
| 310 | fn _compute_char_len(&self) -> usize { |
nothing calls this directly
no test coverage detected