drawing_api/common/display_list/text/
font_weight.rs

1#[derive(Copy, Clone, Debug)]
2pub enum FontWeight {
3    Thin,
4    ExtraLight,
5    Light,
6    Regular,
7    Medium,
8    SemiBold,
9    Bold,
10    ExtraBold,
11    Black,
12}