Trait FontsetExt

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

Provided Methods§

Source

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

Source

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

Source

fn metrics(&self) -> FontMetrics

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§