pub trait IntoHandler<Args> {
// Required method
fn into_handler(self) -> BoxedHandler;
}Expand description
Trait to convert functions into handlers
Required Methods§
Sourcefn into_handler(self) -> BoxedHandler
fn into_handler(self) -> BoxedHandler
Convert this function into a boxed handler