2020-12-14 09:22:30 +01:00
|
|
|
//! See [`Service`] docs for information on this crate's foundational trait.
|
2020-08-09 17:10:58 +02:00
|
|
|
|
2020-12-13 00:24:00 +01:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
2019-12-02 17:30:09 +01:00
|
|
|
#![allow(clippy::type_complexity)]
|
2020-12-13 00:24:00 +01:00
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
2019-12-02 17:30:09 +01:00
|
|
|
|
2019-03-29 18:21:17 +01:00
|
|
|
use std::cell::RefCell;
|
2019-11-14 13:38:24 +01:00
|
|
|
use std::future::Future;
|
2019-02-19 20:31:54 +01:00
|
|
|
use std::rc::Rc;
|
|
|
|
use std::sync::Arc;
|
2019-11-14 13:38:24 +01:00
|
|
|
use std::task::{self, Context, Poll};
|
2019-01-25 04:19:44 +01:00
|
|
|
|
2018-08-25 18:02:14 +02:00
|
|
|
mod and_then;
|
2019-12-03 14:59:28 +01:00
|
|
|
mod and_then_apply_fn;
|
2018-08-30 18:17:17 +02:00
|
|
|
mod apply;
|
2019-03-09 18:01:02 +01:00
|
|
|
mod apply_cfg;
|
2019-02-23 03:20:54 +01:00
|
|
|
pub mod boxed;
|
2018-08-25 18:02:14 +02:00
|
|
|
mod fn_service;
|
2018-08-28 19:39:27 +02:00
|
|
|
mod map;
|
2019-05-12 15:03:50 +02:00
|
|
|
mod map_config;
|
2018-08-25 18:02:14 +02:00
|
|
|
mod map_err;
|
|
|
|
mod map_init_err;
|
2019-11-14 13:38:24 +01:00
|
|
|
mod pipeline;
|
2018-10-03 06:47:50 +02:00
|
|
|
mod then;
|
2019-02-03 19:42:27 +01:00
|
|
|
mod transform;
|
2019-12-03 13:32:02 +01:00
|
|
|
mod transform_err;
|
2019-03-12 20:53:08 +01:00
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
pub use self::apply::{apply_fn, apply_fn_factory};
|
|
|
|
pub use self::apply_cfg::{apply_cfg, apply_cfg_factory};
|
2019-12-08 14:05:05 +01:00
|
|
|
pub use self::fn_service::{fn_factory, fn_factory_with_config, fn_service};
|
2019-12-02 16:27:48 +01:00
|
|
|
pub use self::map_config::{map_config, unit_config};
|
2019-11-14 13:38:24 +01:00
|
|
|
pub use self::pipeline::{pipeline, pipeline_factory, Pipeline, PipelineFactory};
|
|
|
|
pub use self::transform::{apply, Transform};
|
2019-05-12 15:03:50 +02:00
|
|
|
|
2020-08-09 17:10:58 +02:00
|
|
|
/// An asynchronous operation from `Request` to a `Response`.
|
|
|
|
///
|
|
|
|
/// The `Service` trait models a request/response interaction, receiving requests and returning
|
|
|
|
/// replies. You can think about a service as a function with one argument that returns some result
|
|
|
|
/// asynchronously. Conceptually, the operation looks like this:
|
2019-12-10 16:11:39 +01:00
|
|
|
///
|
2020-08-09 17:10:58 +02:00
|
|
|
/// ```rust,ignore
|
|
|
|
/// async fn(Request) -> Result<Response, Err>
|
|
|
|
/// ```
|
2019-12-10 16:11:39 +01:00
|
|
|
///
|
2020-08-09 17:10:58 +02:00
|
|
|
/// The `Service` trait just generalizes this form where each parameter is described as an
|
|
|
|
/// associated type on the trait. Services can also have mutable state that influence computation.
|
2019-12-10 16:11:39 +01:00
|
|
|
///
|
2020-08-09 17:10:58 +02:00
|
|
|
/// `Service` provides a symmetric and uniform API; the same abstractions can be used to represent
|
|
|
|
/// both clients and servers. Services describe only _transformation_ operations which encourage
|
|
|
|
/// simple API surfaces. This leads to simpler design of each service, improves test-ability and
|
|
|
|
/// makes composition easier.
|
2019-12-10 16:11:39 +01:00
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// struct MyService;
|
|
|
|
///
|
|
|
|
/// impl Service for MyService {
|
|
|
|
/// type Request = u8;
|
|
|
|
/// type Response = u64;
|
|
|
|
/// type Error = MyError;
|
2020-08-06 12:21:51 +02:00
|
|
|
/// type Future = Pin<Box<Future<Output=Result<Self::Response, Self::Error>>>>;
|
2019-12-10 16:11:39 +01:00
|
|
|
///
|
|
|
|
/// fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { ... }
|
|
|
|
///
|
2020-01-11 23:44:01 +01:00
|
|
|
/// fn call(&mut self, req: Self::Request) -> Self::Future { ... }
|
2019-12-10 16:11:39 +01:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Sometimes it is not necessary to implement the Service trait. For example, the above service
|
2020-12-14 09:22:30 +01:00
|
|
|
/// could be rewritten as a simple function and passed to [fn_service](fn_service()).
|
2019-12-10 16:11:39 +01:00
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// async fn my_service(req: u8) -> Result<u64, MyError>;
|
|
|
|
/// ```
|
2020-12-27 05:28:00 +01:00
|
|
|
pub trait Service<Req> {
|
2018-12-09 18:56:23 +01:00
|
|
|
/// Responses given by the service.
|
|
|
|
type Response;
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
/// Errors produced by the service when polling readiness or executing call.
|
2018-12-09 18:56:23 +01:00
|
|
|
type Error;
|
|
|
|
|
|
|
|
/// The future response value.
|
2019-11-14 13:38:24 +01:00
|
|
|
type Future: Future<Output = Result<Self::Response, Self::Error>>;
|
2018-12-09 18:56:23 +01:00
|
|
|
|
|
|
|
/// Returns `Ready` when the service is able to process requests.
|
|
|
|
///
|
2020-01-11 23:44:01 +01:00
|
|
|
/// If the service is at capacity, then `Pending` is returned and the task
|
2018-12-09 18:56:23 +01:00
|
|
|
/// is notified when the service becomes ready again. This function is
|
|
|
|
/// expected to be called while on a task.
|
|
|
|
///
|
|
|
|
/// This is a **best effort** implementation. False positives are permitted.
|
|
|
|
/// It is permitted for the service to return `Ready` from a `poll_ready`
|
|
|
|
/// call and the next invocation of `call` results in an error.
|
2019-12-10 16:11:39 +01:00
|
|
|
///
|
2020-08-09 17:10:58 +02:00
|
|
|
/// # Notes
|
2019-12-10 16:11:39 +01:00
|
|
|
/// 1. `.poll_ready()` might be called on different task from actual service call.
|
2020-08-09 17:10:58 +02:00
|
|
|
/// 1. In case of chained services, `.poll_ready()` get called for all services at once.
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut task::Context<'_>) -> Poll<Result<(), Self::Error>>;
|
2018-12-09 18:56:23 +01:00
|
|
|
|
|
|
|
/// Process the request and return the response asynchronously.
|
|
|
|
///
|
|
|
|
/// This function is expected to be callable off task. As such,
|
|
|
|
/// implementations should take care to not call `poll_ready`. If the
|
|
|
|
/// service is at capacity and the request is unable to be handled, the
|
|
|
|
/// returned `Future` should resolve to an error.
|
|
|
|
///
|
|
|
|
/// Calling `call` without calling `poll_ready` is permitted. The
|
|
|
|
/// implementation must be resilient to this fact.
|
2020-12-27 05:28:00 +01:00
|
|
|
fn call(&mut self, req: Req) -> Self::Future;
|
2019-11-18 09:30:04 +01:00
|
|
|
|
|
|
|
/// Map this service's output to a different type, returning a new service
|
|
|
|
/// of the resulting type.
|
|
|
|
///
|
|
|
|
/// This function is similar to the `Option::map` or `Iterator::map` where
|
|
|
|
/// it will change the type of the underlying service.
|
|
|
|
///
|
|
|
|
/// Note that this function consumes the receiving service and returns a
|
|
|
|
/// wrapped version of it, similar to the existing `map` methods in the
|
|
|
|
/// standard library.
|
2020-12-27 05:28:00 +01:00
|
|
|
fn map<F, R>(self, f: F) -> crate::dev::Map<Self, F, Req, R>
|
2019-11-18 09:30:04 +01:00
|
|
|
where
|
|
|
|
Self: Sized,
|
2019-11-19 09:51:40 +01:00
|
|
|
F: FnMut(Self::Response) -> R,
|
2019-11-18 09:30:04 +01:00
|
|
|
{
|
|
|
|
crate::dev::Map::new(self, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Map this service's error to a different error, returning a new service.
|
|
|
|
///
|
|
|
|
/// This function is similar to the `Result::map_err` where it will change
|
2020-08-09 17:10:58 +02:00
|
|
|
/// the error type of the underlying service. For example, this can be useful to
|
2019-11-18 09:30:04 +01:00
|
|
|
/// ensure that services have the same error type.
|
|
|
|
///
|
|
|
|
/// Note that this function consumes the receiving service and returns a
|
|
|
|
/// wrapped version of it.
|
2020-12-27 05:28:00 +01:00
|
|
|
fn map_err<F, E>(self, f: F) -> crate::dev::MapErr<Self, Req, F, E>
|
2019-11-18 09:30:04 +01:00
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
F: Fn(Self::Error) -> E,
|
|
|
|
{
|
|
|
|
crate::dev::MapErr::new(self, f)
|
|
|
|
}
|
2018-12-13 03:32:19 +01:00
|
|
|
}
|
2018-12-09 18:56:23 +01:00
|
|
|
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Factory for creating `Service`s.
|
2018-11-30 03:56:15 +01:00
|
|
|
///
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Acts as a service factory. This is useful for cases where new `Service`s
|
|
|
|
/// must be produced. One case is a TCP server listener. The listener
|
|
|
|
/// accepts new TCP streams, obtains a new `Service` using the
|
|
|
|
/// `ServiceFactory` trait, and uses the new `Service` to process inbound
|
2018-11-30 03:56:15 +01:00
|
|
|
/// requests on that new TCP stream.
|
2019-02-22 21:44:37 +01:00
|
|
|
///
|
2019-03-09 15:36:23 +01:00
|
|
|
/// `Config` is a service factory configuration type.
|
2020-12-27 05:28:00 +01:00
|
|
|
pub trait ServiceFactory<Req> {
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Responses given by the created services.
|
2018-11-30 03:56:15 +01:00
|
|
|
type Response;
|
|
|
|
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Errors produced by the created services.
|
2018-11-30 03:56:15 +01:00
|
|
|
type Error;
|
|
|
|
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Service factory configuration.
|
2019-05-12 15:03:50 +02:00
|
|
|
type Config;
|
|
|
|
|
2020-08-09 17:10:58 +02:00
|
|
|
/// The kind of `Service` created by this factory.
|
2020-12-27 05:28:00 +01:00
|
|
|
type Service: Service<Req, Response = Self::Response, Error = Self::Error>;
|
2018-11-30 03:56:15 +01:00
|
|
|
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Errors potentially raised while building a service.
|
2018-11-30 03:56:15 +01:00
|
|
|
type InitError;
|
|
|
|
|
|
|
|
/// The future of the `Service` instance.
|
2019-11-14 13:38:24 +01:00
|
|
|
type Future: Future<Output = Result<Self::Service, Self::InitError>>;
|
2018-11-30 03:56:15 +01:00
|
|
|
|
2020-08-09 17:10:58 +02:00
|
|
|
/// Create and return a new service asynchronously.
|
2019-12-02 16:27:48 +01:00
|
|
|
fn new_service(&self, cfg: Self::Config) -> Self::Future;
|
2019-11-18 09:30:04 +01:00
|
|
|
|
|
|
|
/// Map this service's output to a different type, returning a new service
|
|
|
|
/// of the resulting type.
|
2020-12-27 05:28:00 +01:00
|
|
|
fn map<F, R>(self, f: F) -> crate::map::MapServiceFactory<Self, F, Req, R>
|
2019-11-18 09:30:04 +01:00
|
|
|
where
|
|
|
|
Self: Sized,
|
2019-11-19 09:51:40 +01:00
|
|
|
F: FnMut(Self::Response) -> R + Clone,
|
2019-11-18 09:30:04 +01:00
|
|
|
{
|
|
|
|
crate::map::MapServiceFactory::new(self, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Map this service's error to a different error, returning a new service.
|
2020-12-27 05:28:00 +01:00
|
|
|
fn map_err<F, E>(self, f: F) -> crate::map_err::MapErrServiceFactory<Self, Req, F, E>
|
2019-11-18 09:30:04 +01:00
|
|
|
where
|
|
|
|
Self: Sized,
|
2019-11-19 09:51:40 +01:00
|
|
|
F: Fn(Self::Error) -> E + Clone,
|
2019-11-18 09:30:04 +01:00
|
|
|
{
|
|
|
|
crate::map_err::MapErrServiceFactory::new(self, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Map this factory's init error to a different error, returning a new service.
|
2020-12-27 05:28:00 +01:00
|
|
|
fn map_init_err<F, E>(self, f: F) -> crate::map_init_err::MapInitErr<Self, F, Req, E>
|
2019-11-18 09:30:04 +01:00
|
|
|
where
|
|
|
|
Self: Sized,
|
2019-11-19 09:51:40 +01:00
|
|
|
F: Fn(Self::InitError) -> E + Clone,
|
2019-11-18 09:30:04 +01:00
|
|
|
{
|
|
|
|
crate::map_init_err::MapInitErr::new(self, f)
|
|
|
|
}
|
2018-08-25 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<'a, S, Req> Service<Req> for &'a mut S
|
2018-12-09 18:56:23 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: Service<Req> + 'a,
|
2018-12-09 18:56:23 +01:00
|
|
|
{
|
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
|
|
|
(**self).poll_ready(ctx)
|
2018-12-09 18:56:23 +01:00
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
fn call(&mut self, request: Req) -> S::Future {
|
2018-12-09 18:56:23 +01:00
|
|
|
(**self).call(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<S, Req> Service<Req> for Box<S>
|
2018-12-09 19:14:08 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: Service<Req> + ?Sized,
|
2018-12-09 19:14:08 +01:00
|
|
|
{
|
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll<Result<(), S::Error>> {
|
|
|
|
(**self).poll_ready(ctx)
|
2018-12-09 19:14:08 +01:00
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
fn call(&mut self, request: Req) -> S::Future {
|
2018-12-09 19:14:08 +01:00
|
|
|
(**self).call(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<S, Req> Service<Req> for RefCell<S>
|
2019-11-19 03:45:09 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: Service<Req>,
|
2019-11-19 03:45:09 +01:00
|
|
|
{
|
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
|
|
|
self.borrow_mut().poll_ready(ctx)
|
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
fn call(&mut self, request: Req) -> S::Future {
|
2019-11-19 03:45:09 +01:00
|
|
|
self.borrow_mut().call(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<S, Req> Service<Req> for Rc<RefCell<S>>
|
2019-03-29 18:21:17 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: Service<Req>,
|
2019-03-29 18:21:17 +01:00
|
|
|
{
|
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
|
|
|
self.borrow_mut().poll_ready(ctx)
|
2019-03-29 18:21:17 +01:00
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
fn call(&mut self, request: Req) -> S::Future {
|
2019-11-14 13:38:24 +01:00
|
|
|
(&mut (**self).borrow_mut()).call(request)
|
2019-03-29 18:21:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<S, Req> ServiceFactory<Req> for Rc<S>
|
2019-02-19 20:31:54 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: ServiceFactory<Req>,
|
2019-02-19 20:31:54 +01:00
|
|
|
{
|
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
2019-05-12 15:03:50 +02:00
|
|
|
type Config = S::Config;
|
2019-02-19 20:31:54 +01:00
|
|
|
type Service = S::Service;
|
|
|
|
type InitError = S::InitError;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-12-02 16:27:48 +01:00
|
|
|
fn new_service(&self, cfg: S::Config) -> S::Future {
|
2019-02-22 21:44:37 +01:00
|
|
|
self.as_ref().new_service(cfg)
|
2019-02-19 20:31:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<S, Req> ServiceFactory<Req> for Arc<S>
|
2019-02-19 20:31:54 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: ServiceFactory<Req>,
|
2019-02-19 20:31:54 +01:00
|
|
|
{
|
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
2019-05-12 15:03:50 +02:00
|
|
|
type Config = S::Config;
|
2019-02-19 20:31:54 +01:00
|
|
|
type Service = S::Service;
|
|
|
|
type InitError = S::InitError;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-12-02 16:27:48 +01:00
|
|
|
fn new_service(&self, cfg: S::Config) -> S::Future {
|
2019-02-22 21:44:37 +01:00
|
|
|
self.as_ref().new_service(cfg)
|
2019-02-19 20:31:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 18:57:47 +02:00
|
|
|
/// Trait for types that can be converted to a `Service`
|
2020-12-27 05:28:00 +01:00
|
|
|
pub trait IntoService<S, Req>
|
2018-09-04 18:49:21 +02:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: Service<Req>,
|
2018-09-04 18:49:21 +02:00
|
|
|
{
|
2018-09-04 18:57:47 +02:00
|
|
|
/// Convert to a `Service`
|
2020-12-27 05:28:00 +01:00
|
|
|
fn into_service(self) -> S;
|
2018-09-04 18:49:21 +02:00
|
|
|
}
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
/// Trait for types that can be converted to a `ServiceFactory`
|
2020-12-27 05:28:00 +01:00
|
|
|
pub trait IntoServiceFactory<SF, Req>
|
2018-09-04 18:49:21 +02:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
SF: ServiceFactory<Req>,
|
2018-09-04 18:49:21 +02:00
|
|
|
{
|
2019-12-10 16:11:39 +01:00
|
|
|
/// Convert `Self` to a `ServiceFactory`
|
2020-12-27 05:28:00 +01:00
|
|
|
fn into_factory(self) -> SF;
|
2018-09-04 18:49:21 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<S, Req> IntoService<S, Req> for S
|
2018-09-04 18:49:21 +02:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
S: Service<Req>,
|
2018-09-04 18:49:21 +02:00
|
|
|
{
|
2020-12-27 05:28:00 +01:00
|
|
|
fn into_service(self) -> S {
|
2018-09-04 18:49:21 +02:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
impl<SF, Req> IntoServiceFactory<SF, Req> for SF
|
2019-02-22 23:30:00 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
SF: ServiceFactory<Req>,
|
2019-02-22 23:30:00 +01:00
|
|
|
{
|
2020-12-27 05:28:00 +01:00
|
|
|
fn into_factory(self) -> SF {
|
2019-02-22 23:30:00 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
2019-11-18 09:30:04 +01:00
|
|
|
|
2020-12-27 05:28:00 +01:00
|
|
|
/// Convert object of type `U` to a service `S`
|
|
|
|
pub fn into_service<I, S, Req>(tp: I) -> S
|
2020-01-08 13:31:50 +01:00
|
|
|
where
|
2020-12-27 05:28:00 +01:00
|
|
|
I: IntoService<S, Req>,
|
|
|
|
S: Service<Req>,
|
2020-01-08 13:31:50 +01:00
|
|
|
{
|
|
|
|
tp.into_service()
|
|
|
|
}
|
|
|
|
|
2019-11-18 09:30:04 +01:00
|
|
|
pub mod dev {
|
2020-12-27 05:28:00 +01:00
|
|
|
pub use crate::apply::{Apply, ApplyFactory};
|
2019-11-18 09:30:04 +01:00
|
|
|
pub use crate::fn_service::{
|
|
|
|
FnService, FnServiceConfig, FnServiceFactory, FnServiceNoConfig,
|
|
|
|
};
|
|
|
|
pub use crate::map::{Map, MapServiceFactory};
|
2019-11-18 13:28:54 +01:00
|
|
|
pub use crate::map_config::{MapConfig, UnitConfig};
|
2019-11-18 09:30:04 +01:00
|
|
|
pub use crate::map_err::{MapErr, MapErrServiceFactory};
|
|
|
|
pub use crate::map_init_err::MapInitErr;
|
2019-11-19 01:51:43 +01:00
|
|
|
pub use crate::transform::ApplyTransform;
|
2019-12-03 13:32:02 +01:00
|
|
|
pub use crate::transform_err::TransformMapInitErr;
|
2019-11-18 09:30:04 +01:00
|
|
|
}
|