pub struct GlyphId(/* private fields */);
Expand description
A 32-bit glyph identifier.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GlyphId
impl<'de> Deserialize<'de> for GlyphId
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for GlyphId
impl Ord for GlyphId
Source§impl PartialOrd<GlyphId> for GlyphId16
impl PartialOrd<GlyphId> for GlyphId16
Source§impl PartialOrd<GlyphId16> for GlyphId
impl PartialOrd<GlyphId16> for GlyphId
Source§impl PartialOrd for GlyphId
impl PartialOrd for GlyphId
impl AnyBitPattern for GlyphId
impl Copy for GlyphId
impl Eq for GlyphId
impl StructuralPartialEq for GlyphId
Auto Trait Implementations§
impl Freeze for GlyphId
impl RefUnwindSafe for GlyphId
impl Send for GlyphId
impl Sync for GlyphId
impl Unpin for GlyphId
impl UnwindSafe for GlyphId
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.