cosmic-text/src/font/matches.rs

13 lines
240 B
Rust
Raw Normal View History

2022-10-24 08:56:48 -06:00
// SPDX-License-Identifier: MIT OR Apache-2.0
2022-10-25 15:47:55 -06:00
use std::sync::Arc;
2022-10-18 12:07:22 -06:00
2022-10-26 14:16:48 -06:00
use crate::Font;
2022-10-18 12:07:22 -06:00
2022-10-18 17:13:48 -06:00
/// Fonts that match a pattern
2022-10-18 12:07:22 -06:00
pub struct FontMatches<'a> {
pub locale: &'a str,
pub default_family: String,
2022-10-25 15:47:55 -06:00
pub fonts: Vec<Arc<Font<'a>>>,
2022-10-18 12:07:22 -06:00
}