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