mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 22:51:07 +01:00
allow to customize cfg parameter for FnNewService
This commit is contained in:
parent
83a19e9cb3
commit
83f51b28d7
@ -6,7 +6,7 @@ use futures::{Async, IntoFuture, Poll};
|
||||
use super::{IntoConfigurableNewService, IntoNewService, IntoService, NewService, Service};
|
||||
|
||||
/// Create `NewService` for function that can act as Service
|
||||
pub fn fn_service<F, Req, Out>(f: F) -> FnNewService<F, Req, Out, ()>
|
||||
pub fn fn_service<F, Req, Out, Cfg>(f: F) -> FnNewService<F, Req, Out, Cfg>
|
||||
where
|
||||
F: FnMut(Req) -> Out + Clone,
|
||||
Out: IntoFuture,
|
||||
|
Loading…
Reference in New Issue
Block a user