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

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

Conversion helper trait

Associated Types

The associated type which is result of conversion.

Required Methods

Convert into HttpHandler object.

Implementors