pub trait IntoHttpHandler {
    type Handler: HttpHandler;

    fn into_handler(self) -> Self::Handler;
}
Expand description

Conversion helper trait

Required Associated Types

The associated type which is result of conversion.

Required Methods

Convert into HttpHandler object.

Implementations on Foreign Types

Implementors