pub struct Subtable2<'a> {
pub data: FontData<'a>,
pub header_len: usize,
pub left_offset_table: Subtable2ClassTable<'a>,
pub right_offset_table: Subtable2ClassTable<'a>,
pub array_offset: usize,
}
Expand description
The type 2 kern
subtable.
Fields§
§data: FontData<'a>
§header_len: usize
Size of the header of the containing subtable.
left_offset_table: Subtable2ClassTable<'a>
Left-hand offset table.
right_offset_table: Subtable2ClassTable<'a>
Right-hand offset table.
array_offset: usize
Offset to kerning value array.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Subtable2<'a>
impl<'a> RefUnwindSafe for Subtable2<'a>
impl<'a> Send for Subtable2<'a>
impl<'a> Sync for Subtable2<'a>
impl<'a> Unpin for Subtable2<'a>
impl<'a> UnwindSafe for Subtable2<'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