topcoat-font 0.1.3

A modular, batteries-included Rust web framework for server-rendered apps.
Documentation
1
2
3
4
5
6
7
8
9
/// Place a Fontsource font should be loaded from.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum Host {
    /// Download the Fontsource font and self-host it as a Topcoat asset.
    #[cfg(feature = "asset")]
    Asset,
    /// Load the Fontsource font from <https://www.jsdelivr.com/>.
    JsDelivr,
}