pub trait IntoFont<'a> {
// Required method
fn into_font(self) -> FontDesc<'a>;
}Expand description
The trait that allows some type turns into a font description
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".