pub trait FontFaceExt: 'static {
    fn describe(&self) -> Option<FontDescription>;
    fn face_name(&self) -> Option<GString>;
    fn family(&self) -> Option<FontFamily>;
    fn is_synthesized(&self) -> bool;
    fn list_sizes(&self) -> Vec<i32>;
}

Required methods

Implementors