pub struct Codepoint(/* private fields */);
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 PartialEq<Codepoint> for Codepoints
impl PartialEq<Codepoint> for Codepoints
source§impl PartialEq<Codepoint> for u32
impl PartialEq<Codepoint> for u32
source§impl PartialEq for Codepoint
impl PartialEq for Codepoint
source§impl PartialOrd for Codepoint
impl PartialOrd 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 moreimpl Copy for Codepoint
impl Eq for Codepoint
impl StructuralEq for Codepoint
impl StructuralPartialEq for Codepoint
Auto Trait Implementations§
impl RefUnwindSafe for Codepoint
impl Send for Codepoint
impl Sync for Codepoint
impl Unpin for Codepoint
impl UnwindSafe for Codepoint
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more