Trait gfx_glyph::GlyphGrouper [] [src]

pub trait GlyphGrouper: Debug + Copy + Hash {
    fn is_separated_by(&self, c: char) -> bool;
}

Logic to link glyphs/characters together as a group for the purposes of wrapping.

See GlyphGroup for built-in groupings.

Required Methods

Returns if the input character is considered a separator

Implementors