pillow-http 0.4.2

http in pillow
Documentation
1
2
3
4
5
6
7
use crate::{Request, Response};

pub trait Handler {
    fn handler(request: &Request) -> Response
    where
        Self: std::fmt::Debug + Sized + Send + Sync;
}