perseus 0.4.2

A lightning-fast frontend web dev platform with full support for SSR and SSG.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// An internal subset of `RouteInfo` that stores the details needed for
/// preloading.
///
/// This exists on the engine-side for type convenience, but only has fields
/// on the browser-side.
pub(crate) struct PreloadInfo {
    #[cfg(any(client, doc))]
    pub(crate) locale: String,
    #[cfg(any(client, doc))]
    pub(crate) was_incremental_match: bool,
}