Trait sourceview5::prelude::FontsetExt

source ·
pub trait FontsetExt: IsA<Fontset> + Sealed + 'static {
    // Provided methods
    fn foreach<P>(&self, func: P)
       where P: FnMut(&Fontset, &Font) -> bool { ... }
    fn font(&self, wc: u32) -> Font { ... }
    fn metrics(&self) -> FontMetrics { ... }
}

Provided Methods§

source

fn foreach<P>(&self, func: P)
where P: FnMut(&Fontset, &Font) -> bool,

source

fn font(&self, wc: u32) -> Font

source

fn metrics(&self) -> FontMetrics

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> FontsetExt for O
where O: IsA<Fontset>,