pub type Span = SimpleSpan<usize, SourceId>;Expand description
Identifies a span of text within its source file.
Aliased Type§
pub struct Span {
pub start: usize,
pub end: usize,
/* private fields */
}Fields§
§start: usizeThe start offset of the span.
end: usizeThe end (exclusive) offset of the span.