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

Trait for types that can be converted to a Service

Required Methods§

Convert to a Service

Implementors§