aboutsummaryrefslogblamecommitdiffstats
path: root/src/font.rs
blob: f9f4f4dff36284fd724a1b9e7389b680a2077a4f (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                             
use std::sync::Arc;

#[derive(serde::Deserialize, Debug, Default)]
#[serde(default)]
#[serde(rename = "kebab-case")]
pub struct FontQuery {
  pub font: Option<Arc<str>>,
  pub include_font: Option<Arc<str>>,
//  pub small_font: Option<()>
}