pub(crate) type Span = SimpleSpan;
pub(crate) struct Span { pub start: usize, pub end: usize, /* private fields */ }
start: usize
The start offset of the span.
end: usize
The end (exclusive) offset of the span.