Trait font::Case [] [src]

pub trait Case {
    fn draw(&self, char) -> Result<Option<Glyph>>;
}

A collection of glyphs.

Required Methods

fn draw(&self, char) -> Result<Option<Glyph>>

Draw a glyph.

Implementors