embedded_graphics::mono_font::mapping

Trait GlyphMapping

Source
pub trait GlyphMapping: Sync {
    // Required method
    fn index(&self, c: char) -> usize;
}
Expand description

Mapping from characters to glyph indices.

Required Methods§

Source

fn index(&self, c: char) -> usize

Maps a character to a glyph index.

If c isn’t included in the font the index of a suitable replacement glyph is returned.

Implementors§

Source§

impl GlyphMapping for StrGlyphMapping<'_>

Source§

impl<F> GlyphMapping for F
where F: Sync + Fn(char) -> usize,