pub trait AnyFont {
// Required method
fn with_font<F, R>(&self, f: F) -> R
where F: FnOnce(Option<&hb_font_t<'_>>) -> R;
}Required Methods§
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.