(p: &[u8])
| 541 | let p = &s[byte_range.start..]; |
| 542 | |
| 543 | fn slice<const N: usize>(p: &[u8]) -> Option<[u8; N]> { |
| 544 | p.first_chunk().copied() |
| 545 | } |
| 546 | |
| 547 | let c = match standard_encoding { |
| 548 | StandardEncoding::Utf8 => { |
no outgoing calls
no test coverage detected