pub trait IntoServiceFactory<T, Req, Cfg = ()>where
    T: ServiceFactory<Req, Cfg>,
{ fn into_factory(self) -> T; }
Expand description

Trait for types that can be converted to a ServiceFactory

Required Methods

Convert Self to a ServiceFactory

Implementors