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
use std::fmt;
use std::mem::zeroed;
use winapi::um::wincontypes::CONSOLE_FONT_INFO;
use crate::Size;
#[derive(Clone)]
pub struct FontInfo(pub CONSOLE_FONT_INFO);
impl fmt::Debug for FontInfo {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("FontInfo")
            .field("dwFontSize", &self.size())
            .field("nFont", &self.index())
            .finish()
    }
}
impl FontInfo {
    pub fn new() -> FontInfo {
        FontInfo(unsafe { zeroed() })
    }
    pub fn size(&self) -> Size {
        Size::from(self.0.dwFontSize)
    }
    pub fn index(&self) -> u32 {
        self.0.nFont
    }
}