[−][src]Trait actix_web::server::IntoHttpHandler
Conversion helper trait
Associated Types
type Handler: HttpHandler
The associated type which is result of conversion.
Required Methods
fn into_handler(self) -> Self::Handler
Convert into HttpHandler
object.
Implementations on Foreign Types
impl<T: IntoHttpHandler> IntoHttpHandler for Vec<T>
[src]
impl<T: IntoHttpHandler> IntoHttpHandler for Vec<T>
type Handler = VecHttpHandler<T::Handler>
fn into_handler(self) -> Self::Handler
[src]
fn into_handler(self) -> Self::Handler
Implementors
impl<'a, S: 'static> IntoHttpHandler for &'a mut App<S>
[src]
impl<'a, S: 'static> IntoHttpHandler for &'a mut App<S>
type Handler = HttpApplication<S>
fn into_handler(self) -> HttpApplication<S>
[src]
fn into_handler(self) -> HttpApplication<S>
impl<S: 'static> IntoHttpHandler for App<S>
[src]
impl<S: 'static> IntoHttpHandler for App<S>
type Handler = HttpApplication<S>
fn into_handler(self) -> HttpApplication<S>
[src]
fn into_handler(self) -> HttpApplication<S>
impl<S: 'static> IntoHttpHandler for TestApp<S>
[src]
impl<S: 'static> IntoHttpHandler for TestApp<S>
type Handler = HttpApplication<S>
fn into_handler(self) -> HttpApplication<S>
[src]
fn into_handler(self) -> HttpApplication<S>
impl<T: HttpHandler> IntoHttpHandler for T
[src]
impl<T: HttpHandler> IntoHttpHandler for T
type Handler = T
fn into_handler(self) -> Self::Handler
[src]
fn into_handler(self) -> Self::Handler