pub struct CmapTable {
pub mappings: Vec<u32>,
pub tables: Vec<CmapSubtable>,
}Expand description
CMAP table data
Contains only the subset of the table needed for mapping unicode codepoints to glyph indices
Fields§
§mappings: Vec<u32>Mapping from glyph indices to unicode codepoints
tables: Vec<CmapSubtable>Raw Subtables
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CmapTable
impl RefUnwindSafe for CmapTable
impl Send for CmapTable
impl Sync for CmapTable
impl Unpin for CmapTable
impl UnwindSafe for CmapTable
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