no need for generics

This commit is contained in:
Nikolay Kim 2020-04-12 00:54:44 +06:00
parent cd79c0e997
commit 2299b75a74
3 changed files with 11 additions and 16 deletions

View file

@ -186,7 +186,7 @@ pub trait ServiceFactory {
/// Errors produced while building a service.
type InitError;
/// The future of the `Service` instance.
/// The future of the `ServiceFactory` instance.
type Future: Future<Output = Result<Self::Service, Self::InitError>>;
/// Create and return a new service value asynchronously.