use serde::Deserialize; use serde::Serialize; /// This is the struct for the natter.toml config file that ends up in each site's root directory. #[derive(Debug, Deserialize, Serialize)] pub(crate) struct RawConfig { pub(super) site_title: Option, author: Option, email: Option, pub(super) use_relative_paths: Option, pub(super) web_root: Option, pub(super) stream: Option, } impl Default for RawConfig { fn default() -> Self { RawConfig { site_title: None, author: None, email: None, use_relative_paths: None, web_root: None, stream: None, } } } #[derive(Debug, Deserialize, Serialize)] pub(crate) struct RawConfigStream { pub(super) entries_per_page: Option, } impl Default for RawConfigStream { fn default() -> Self { RawConfigStream { entries_per_page: None, } } }