| 362 | } |
| 363 | } |
| 364 | |
| 365 | impl std::error::Error for ProfileError {} |
| 366 | |
| 367 | /// Minimal little-endian byte reader with bounds checking. |
| 368 | struct Reader<'a> { |
| 369 | buf: &'a [u8], |
| 370 | pos: usize, |
| 371 | } |
| 372 | |
| 373 | impl<'a> Reader<'a> { |
nothing calls this directly
no outgoing calls
no test coverage detected