pub type CharRange = Range<char>;
struct CharRange { pub start: char, pub end: char, }
start: char
The lower bound of the range (inclusive).
end: char
The upper bound of the range (exclusive).