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