[][src]Trait actix_service::IntoNewService

pub trait IntoNewService<T, C = ()> where
    T: NewService<C>, 
{ fn into_new_service(self) -> T; }

Trait for types that can be converted to a NewService

Required methods

fn into_new_service(self) -> T

Convert to an NewService

Loading content...

Implementors

impl<T, C> IntoNewService<T, C> for T where
    T: NewService<C>, 
[src]

Loading content...