Enum precis_core::Codepoints [−][src]
pub enum Codepoints {
Single(u32),
Range(RangeInclusive<u32>),
}Expand description
A representation of either a single codepoint or a range of codepoints.
Variants
Single(u32)A single codepoint.
Tuple Fields of Single
0: u32Range(RangeInclusive<u32>)A range of codepoints.
Tuple Fields of Range
0: RangeInclusive<u32>Trait Implementations
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >=
operator. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more