pub struct PostTable {
pub is_monospaced: bool,
pub glyph_names: Vec<String>,
}Expand description
The Post table of a TrueType font
Contains only the subset of the table needed for mapping glyph indices to glyph names
Fields§
§is_monospaced: boolTrue if the font is monospaced
glyph_names: Vec<String>The glyph names in the table, by glyph index
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PostTable
impl RefUnwindSafe for PostTable
impl Send for PostTable
impl Sync for PostTable
impl Unpin for PostTable
impl UnwindSafe for PostTable
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