struct TopDict<'a> {
charstrings: Index<'a>,
font_dicts: Index<'a>,
fd_select: Option<FdSelect<'a>>,
private_dict_range: Range<u32>,
font_matrix: Option<[Fixed; 6]>,
var_store: Option<ItemVariationStore<'a>>,
}
Expand description
Entries that we parse from the Top DICT that are required to support charstring evaluation.
Fields§
§charstrings: Index<'a>
§font_dicts: Index<'a>
§fd_select: Option<FdSelect<'a>>
§private_dict_range: Range<u32>
§font_matrix: Option<[Fixed; 6]>
§var_store: Option<ItemVariationStore<'a>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for TopDict<'a>
impl<'a> RefUnwindSafe for TopDict<'a>
impl<'a> Send for TopDict<'a>
impl<'a> Sync for TopDict<'a>
impl<'a> Unpin for TopDict<'a>
impl<'a> UnwindSafe for TopDict<'a>
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