pub trait Fonts: Any {
// Required methods
fn load(&mut self, source: FontSource<'_>, name: Option<&str>);
fn layout(
&mut self,
paragraph: &Paragraph,
width: f32,
) -> Vec<TextLayoutLine>;
fn measure(&mut self, paragraph: &Paragraph, width: f32) -> Size;
}
Expand description
A trait for managing fonts and text layout.
Required Methods§
Sourcefn load(&mut self, source: FontSource<'_>, name: Option<&str>)
fn load(&mut self, source: FontSource<'_>, name: Option<&str>)
Load the given font source.
If name
is provided, the fonts will be registered under that name
instead of the default name provided by the source.