pzzld-server 0.0.2

A production ready server optimized for WASM applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*
    Appellation: stateful <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/

/// A trait for types that can be used as application state in Axum applications.
pub trait AxumState: Clone + Send + Sync + 'static {}

/*
 ************* Implementations *************
*/
impl<T> AxumState for T where T: Clone + Send + Sync + 'static {}