font_reader/
types.rs

1pub type Fonts = Vec<Font>;
2
3pub struct Font {
4  pub postscript: String,
5  pub family: String,
6  pub id: String,
7  pub style: String,
8  pub weight: u16,
9  pub stretch: u16,
10  pub italic: bool,
11}