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