pub trait IntoService<Svc, Req>where
    Svc: Service<Req>,
{ fn into_service(self) -> Svc; }
Expand description

Trait for types that can be converted to a Service

Required Methods§

Convert to a Service

Implementors§