Trait sourceview5::prelude::FontFamilyExt

source ·
pub trait FontFamilyExt: IsA<FontFamily> + Sealed + 'static {
    // Provided methods
    fn face(&self, name: Option<&str>) -> Option<FontFace> { ... }
    fn name(&self) -> GString { ... }
    fn is_monospace(&self) -> bool { ... }
    fn is_variable(&self) -> bool { ... }
    fn list_faces(&self) -> Vec<FontFace> { ... }
}

Provided Methods§

source

fn face(&self, name: Option<&str>) -> Option<FontFace>

source

fn name(&self) -> GString

source

fn is_monospace(&self) -> bool

source

fn is_variable(&self) -> bool

source

fn list_faces(&self) -> Vec<FontFace>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> FontFamilyExt for O
where O: IsA<FontFamily>,