1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT OR Apache-2.0

use std::sync::Arc;

use crate::Font;

/// Fonts that match a pattern
pub struct FontMatches<'a> {
    pub locale: &'a str,
    pub default_family: String,
    pub fonts: Vec<Arc<Font<'a>>>,
}