logo
pub trait GlyphData: Clone {
    fn merge(data1: Self, data2: Self) -> Self;
}
Expand description

merge is called during ligature substitution (i.e. merging of glyphs), and determines how the RawGlyph.extra_data field should be merged

Required Methods

Implementations on Foreign Types

Implementors