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

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.

Implementations on Foreign Types

impl<T: IntoHttpHandler> IntoHttpHandler for Vec<T>
[src]

Implementors

impl<'a, S: 'static> IntoHttpHandler for &'a mut App<S>
[src]

impl<S: 'static> IntoHttpHandler for App<S>
[src]

impl<S: 'static> IntoHttpHandler for TestApp<S>
[src]

impl<T: HttpHandler> IntoHttpHandler for T
[src]