pub type ByteSpan = Range<usize>;Expand description
The start and end bytes of a particular portion of a source file
Aliased Type§
pub struct ByteSpan {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).