pub trait SimpleKerning {
// Required methods
fn simple_kerning(&self, left: GlyphId, right: GlyphId) -> Option<i32>;
fn collect_glyphs(
&self,
_first_set: &mut U32Set,
_second_set: &mut U32Set,
_num_glyphs: u32,
);
}