pub struct Table<'a> {
    pub italic_angle: f32,
    pub underline_metrics: LineMetrics,
    pub is_monospaced: bool,
    glyph_indexes: LazyArray16<'a, u16>,
    names_data: &'a [u8],
}Expand description
Fields§
§italic_angle: f32Italic angle in counter-clockwise degrees from the vertical.
underline_metrics: LineMetricsUnderline metrics.
is_monospaced: boolFlag that indicates that the font is monospaced.
glyph_indexes: LazyArray16<'a, u16>§names_data: &'a [u8]Implementations§
Trait Implementations§
impl<'a> Copy for Table<'a>
Auto Trait Implementations§
impl<'a> Freeze for Table<'a>
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> Send for Table<'a>
impl<'a> Sync for Table<'a>
impl<'a> Unpin for Table<'a>
impl<'a> UnwindSafe for Table<'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