1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-07-02 20:04:31 +02:00

fix startup fail example

This commit is contained in:
Rob Ede
2021-10-25 18:13:08 +01:00
parent 4c0eaca581
commit 9b9869f1dd
4 changed files with 24 additions and 10 deletions

View File

@ -1,4 +1,10 @@
use crate::{IntoService, IntoServiceFactory, Service, ServiceFactory, Transform, and_then::{AndThenSendServiceFactory, AndThenService, AndThenServiceFactory}, map::Map, map_err::MapErr, transform_err::TransformMapInitErr};
use crate::{
and_then::{AndThenSendServiceFactory, AndThenService, AndThenServiceFactory},
map::Map,
map_err::MapErr,
transform_err::TransformMapInitErr,
IntoService, IntoServiceFactory, Service, ServiceFactory, Transform,
};
/// An extension trait for [`Service`]s that provides a variety of convenient adapters.
pub trait ServiceExt<Req>: Service<Req> {

View File

@ -175,13 +175,13 @@ where
factory: I,
) -> PipelineFactory<
impl ServiceFactory<
Req,
Response = SF1::Response,
Error = SF::Error,
Config = SF::Config,
InitError = SF::InitError,
Req,
Response = SF1::Response,
Error = SF::Error,
Config = SF::Config,
InitError = SF::InitError,
Service = impl Service<Req, Response = SF1::Response, Error = SF::Error> + Clone,
> + Clone,
> + Clone,
Req,
>
where