1use crate::{Request, Response}; 2 3pub trait Handler { 4 fn handler(request: &Request) -> Response 5 where 6 Self: std::fmt::Debug + Sized + Send + Sync; 7}