/*
Appellation: stateful <module>
Contrib: FL03 <jo3mccain@icloud.com>
*//// A trait for types that can be used as application state in Axum applications.
pubtraitAxumState: Clone + Send + Sync + 'static {}/*
************* Implementations *************
*/impl<T> AxumState forTwhere T: Clone + Send + Sync + 'static{}