pub type ParserSpan = SimpleSpan;Aliased Type§
pub struct ParserSpan {
pub start: usize,
pub end: usize,
pub context: (),
}Fields§
§start: usizeThe start offset of the span.
end: usizeThe end (exclusive) offset of the span.
context: ()The context of the span (usually some ID representing the file path the span relates to).