pub trait FontFamilyExt: 'static {
    fn get_name(&self) -> Option<GString>;
    fn is_monospace(&self) -> bool;
    fn list_faces(&self) -> Vec<FontFace>;
}

Required Methods

Implementors