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