pub struct SubsetResult {
pub ttf_data: Vec<u8>,
pub gid_remap: HashMap<u16, u16>,
}Expand description
Result of subsetting a font.
Fields§
§ttf_data: Vec<u8>The subset TrueType file bytes.
gid_remap: HashMap<u16, u16>Maps original glyph IDs to new contiguous glyph IDs.
Auto Trait Implementations§
impl Freeze for SubsetResult
impl RefUnwindSafe for SubsetResult
impl Send for SubsetResult
impl Sync for SubsetResult
impl Unpin for SubsetResult
impl UnsafeUnpin for SubsetResult
impl UnwindSafe for SubsetResult
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