Trait actix_web::server::IntoHttpHandler [] [src]

pub trait IntoHttpHandler {
    type Handler: HttpHandler;
    fn into_handler(self, settings: ServerSettings) -> Self::Handler;
}

Conversion helper trait

Associated Types

The associated type which is result of conversion.

Required Methods

Convert into HttpHandler object.

Implementors