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
use ab_glyph::Font;

/// Id for a font.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Default)]
pub struct FontId(pub usize);

impl<F> std::ops::Index<FontId> for [F]
where
    F: Font,
{
    type Output = F;

    #[inline]
    fn index(&self, index: FontId) -> &Self::Output {
        self.index(index.0)
    }
}
impl<F> std::ops::Index<&FontId> for [F]
where
    F: Font,
{
    type Output = F;

    #[inline]
    fn index(&self, index: &FontId) -> &Self::Output {
        self.index(index.0)
    }
}