pub trait FontLoader {
// Required method
fn load(&mut self) -> Option<Font>;
}Expand description
A FontLoader would help load a font from somewhere.
pub trait FontLoader {
// Required method
fn load(&mut self) -> Option<Font>;
}A FontLoader would help load a font from somewhere.