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

Required Methods§

source

fn describe(&self) -> FontDescription

source

fn face_name(&self) -> GString

source

fn family(&self) -> FontFamily

Available on crate feature v1_46 only.
source

fn is_synthesized(&self) -> bool

source

fn list_sizes(&self) -> Vec<i32>

Implementors§