pub struct Subtable2<'a> {
pub data: FontData<'a>,
pub left_offset_table: LookupU16<'a>,
pub right_offset_table: LookupU16<'a>,
pub array: &'a [BigEndian<i16>],
}
Expand description
The type 2 kerx
subtable.
Fields§
§data: FontData<'a>
§left_offset_table: LookupU16<'a>
Left-hand offset table.
right_offset_table: LookupU16<'a>
Right-hand offset table.
array: &'a [BigEndian<i16>]
Kerning values.
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