pub trait IntoNewService<T, Request>where
    T: NewService<Request>,
{ fn into_new_service(self) -> T; }
Expand description

Trait for types that can be converted to a Service

Required Methods§

Convert to an NewService

Implementors§