pub(crate) trait DatabaseExt {
// Required methods
fn load_font(
&self,
id: ID,
variations: &[FontVariation],
) -> Option<ResolvedFont>;
fn has_char(&self, id: ID, c: char) -> bool;
}pub(crate) trait DatabaseExt {
// Required methods
fn load_font(
&self,
id: ID,
variations: &[FontVariation],
) -> Option<ResolvedFont>;
fn has_char(&self, id: ID, c: char) -> bool;
}