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