1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use crate::error::FontLoadingError;
use crate::family_handle::FamilyHandle;
use crate::font::Font;
use crate::handle::Handle;
use crate::loader::Loader;
#[derive(Debug)]
pub struct Family<F = Font>
where
F: Loader,
{
fonts: Vec<F>,
}
impl<F> Family<F>
where
F: Loader,
{
pub(crate) fn from_font_handles<'a, I>(font_handles: I) -> Result<Family<F>, FontLoadingError>
where
I: Iterator<Item = &'a Handle>,
{
let mut fonts = vec![];
for font_handle in font_handles {
fonts.push(F::from_handle(font_handle)?)
}
Ok(Family { fonts })
}
#[inline]
pub(crate) fn from_handle(family_handle: &FamilyHandle) -> Result<Family<F>, FontLoadingError> {
Family::from_font_handles(family_handle.fonts.iter())
}
#[inline]
pub fn fonts(&self) -> &[F] {
&self.fonts
}
#[inline]
pub fn is_empty(&self) -> bool {
self.fonts.is_empty()
}
}