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)
Tuple Fields
0: u32A single codepoint.
Range(RangeInclusive<u32>)
Tuple Fields
0: RangeInclusive<u32>A range of codepoints.
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