pub fn check_range_in_bounds(
total_len: usize,
offset: usize,
size: usize,
label: &str,
) -> Result<(), BinaryLayoutError>Expand description
Validates that [offset, offset + size) is within total_len.
ยงErrors
BinaryLayoutError::BoundsExceeded carrying label, both for a range
that runs past the end and for one whose end overflows usize.