enum RawEncoding {
Predefined(PredefinedEncoding),
Custom(Vec<GlyphId>),
}Expand description
Encoding that maps characters to glyph identifiers.
Variants§
Predefined(PredefinedEncoding)
Custom(Vec<GlyphId>)
Trait Implementations§
Source§impl Debug for RawEncoding
impl Debug for RawEncoding
Source§impl PartialEq for RawEncoding
impl PartialEq for RawEncoding
impl StructuralPartialEq for RawEncoding
Auto Trait Implementations§
impl Freeze for RawEncoding
impl RefUnwindSafe for RawEncoding
impl Send for RawEncoding
impl Sync for RawEncoding
impl Unpin for RawEncoding
impl UnsafeUnpin for RawEncoding
impl UnwindSafe for RawEncoding
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