aboutsummaryrefslogtreecommitdiffstats
path: root/src/font.rs
blob: ba3bbd99c5fa33461a7e39573e282c29fd6a9da6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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 google_font: Option<Arc<str>>,
//  pub small_font: Option<()>
}