Trait font8x8::unicode::UnicodeFonts[][src]

pub trait UnicodeFonts {
    fn get(&self, key: char) -> Option<[u8; 8]>;
fn get_font(&self, key: char) -> Option<FontUnicode>;
fn iter(&self) -> Iter<FontUnicode>;
fn print_set(&self);
fn to_vec(&self) -> Vec<(char, FontUnicode)>; }

A trait for collections of FontUnicode, which provide methods for retrieving the Option<[u8; 8]>, using the corresponding char as key.

Required Methods

Important traits for Iter<'a, T>

Important traits for Vec<u8>

Implementors