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 { ... }
}
Expand description
Provided Methods§
Sourcefn metrics(&self) -> FontMetrics
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.