(&self)
| 137 | /// Return the remaining bytes as a &str (valid since source is UTF-8) |
| 138 | #[inline(always)] |
| 139 | fn remaining_str(&self) -> &'a str { |
| 140 | unsafe { std::str::from_utf8_unchecked(&self.bytes[self.pos..]) } |
| 141 | } |
| 142 | |
| 143 | /// Return the remaining bytes slice |
| 144 | #[inline(always)] |
no outgoing calls
no test coverage detected