uhttp 0.17.0

Simple http server for humans
Documentation
1
2
3
4
5
6
7
8
pub type HandleFunc = Box<
  dyn Send
    + Sync
    + Fn(
      crate::Request,
      crate::Response,
    ) -> std::pin::Pin<Box<dyn Send + std::future::Future<Output = crate::Result<()>>>>,
>;