pub enum KernSubtable {
Format0 {
n_pairs: u16,
search_range: u16,
entry_selector: u16,
range_shift: u16,
pairs: Vec<KernPair>,
},
Format2 {
row_width: u16,
left_offset: u16,
right_offset: u16,
array_offset: u16,
left_class_table: KernClassTable,
right_class_table: KernClassTable,
kerning_array: Vec<i16>,
},
}Variants§
Auto Trait Implementations§
impl Freeze for KernSubtable
impl RefUnwindSafe for KernSubtable
impl Send for KernSubtable
impl Sync for KernSubtable
impl Unpin for KernSubtable
impl UnsafeUnpin for KernSubtable
impl UnwindSafe for KernSubtable
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