pub type ByteRange = Range<ByteOffset>;Aliased Type§
pub struct ByteRange {
pub start: ByteOffset,
pub end: ByteOffset,
}Fields§
§start: ByteOffsetThe lower bound of the range (inclusive).
end: ByteOffsetThe upper bound of the range (exclusive).