Type Alias CharRange

Source
pub type CharRange = Range<char>;

Aliased Type§

struct CharRange {
    pub start: char,
    pub end: char,
}

Fields§

§start: char

The lower bound of the range (inclusive).

§end: char

The upper bound of the range (exclusive).