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

Required Methods

Available on crate feature v1_46 only.
Available on crate feature v1_44 only.

Implementors