pub struct Codepoint(pub u32);
Expand description
Represents a Unicode code point.
Tuple Fields§
§0: u32
Trait Implementations§
source§impl IntoGlyphId for Codepoint
impl IntoGlyphId for Codepoint
source§fn into_glyph_id(self, font: &Font<'_>) -> GlyphId
fn into_glyph_id(self, font: &Font<'_>) -> GlyphId
Convert
self
into a GlyphId
, consulting the index map of font
if
necessary.source§impl Ord for Codepoint
impl Ord for Codepoint
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