pub struct CmapSubtable {
pub platform: PlatformType,
pub encoding: u16,
pub mappings: Vec<(u16, u32)>,
}Expand description
An individual CMAP subtable
Fields§
§platform: PlatformTypePlatform ID
encoding: u16Encoding type
mappings: Vec<(u16, u32)>Mappings from glyph indices to unicode codepoints
Trait Implementations§
Source§impl Debug for CmapSubtable
impl Debug for CmapSubtable
Source§impl Default for CmapSubtable
impl Default for CmapSubtable
Source§fn default() -> CmapSubtable
fn default() -> CmapSubtable
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CmapSubtable
impl RefUnwindSafe for CmapSubtable
impl Send for CmapSubtable
impl Sync for CmapSubtable
impl Unpin for CmapSubtable
impl UnwindSafe for CmapSubtable
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