pub trait IntoHandler<T> {
type Handler: Handler;
// Required method
fn into_handler(self) -> Self::Handler;
}Expand description
Required Associated Types§
Required Methods§
Sourcefn into_handler(self) -> Self::Handler
fn into_handler(self) -> Self::Handler
Converts this function into a handler.