pub trait FontsetExt: 'static {
    fn foreach<P: FnMut(&Fontset, &Font) -> bool>(&self, func: P);
    fn font(&self, wc: u32) -> Option<Font>;
    fn metrics(&self) -> Option<FontMetrics>;
}

Required methods

Implementors