pub struct Codepoint(_);Expand description
A single Unicode codepoint.
This type’s string representation is a hexadecimal number. It is guaranteed
to be in the range [0, 10FFFF].
Note that unlike Rust’s char type, this may be a surrogate codepoint.
Implementations§
Trait Implementations§
source§impl IntoIterator for Codepoint
impl IntoIterator for Codepoint
source§impl Ord for Codepoint
impl Ord for Codepoint
source§impl PartialOrd<Codepoint> for Codepoint
impl PartialOrd<Codepoint> for Codepoint
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more