Trait HandlerSimpleAsync
hyper_static_server
pub trait HandlerSimpleAsync: Send + Sync + 'static { type Future: 'static + Send + Future; pub fn handle(&self, _request: Request<Body>) -> Self::Future; pub fn wrap(self) -> HandlerSimpleAsyncWrapper<Self> { ... } }
type Future: 'static + Send + Future
pub fn handle(&self, _request: Request<Body>) -> Self::Future
pub fn wrap(self) -> HandlerSimpleAsyncWrapper<Self>