Trait font8x8::utf16::Utf16Fonts [] [src]

pub trait Utf16Fonts {
    fn get(&self, key: u16) -> Option<[u8; 8]>;
fn get_font(&self, key: u16) -> Option<FontUtf16>;
fn print_set(&self); }

A trait for collections of FontUtf16, which provide methods for retrieving the [u8; 8] by key, using the corresponding Unicode value, encoded as UTF-16 (u16).

Required Methods

Implementors