pub trait FontMetrics {
// Required method
fn measure_text(
&self,
text: &str,
size: f32,
wrap_width: f32,
) -> FontMetricsBounds;
}
pub trait FontMetrics {
// Required method
fn measure_text(
&self,
text: &str,
size: f32,
wrap_width: f32,
) -> FontMetricsBounds;
}