[][src]Function ntex::service::apply_fn_factory

pub fn apply_fn_factory<T, F, R, In, Out, Err, U>(
    service: U,
    f: F
) -> ApplyServiceFactory<T, F, R, In, Out, Err> where
    T: ServiceFactory<Error = Err>,
    U: IntoServiceFactory<T>,
    F: Fn(In, &<T as ServiceFactory>::Service) -> R + Clone,
    R: Future<Output = Result<Out, Err>>, 

Service factory that prodices apply_fn service.