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 PartialOrd for Codepoint
impl PartialOrd for Codepoint
impl Copy for Codepoint
impl Eq for Codepoint
impl StructuralPartialEq for Codepoint
Auto Trait Implementations§
impl Freeze for Codepoint
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