pub trait HttpService<ReqBody>: Sealed<ReqBody> {
    type ResBody: HttpBody;
    type Error: Into<Box<dyn StdError + Send + Sync>>;
    type Future: Future<Output = Result<Response<Self::ResBody>, Self::Error>>;
}
Expand description

An asynchronous function from Request to Response.

Required Associated Types§

source

type ResBody: HttpBody

The HttpBody body of the http::Response.

source

type Error: Into<Box<dyn StdError + Send + Sync>>

The error type that can occur within this Service.

Note: Returning an Error to a hyper server will cause the connection to be abruptly aborted. In most cases, it is better to return a Response with a 4xx or 5xx status code.

source

type Future: Future<Output = Result<Response<Self::ResBody>, Self::Error>>

The Future returned by this Service.

Implementors§

source§

impl<T, B1, B2> HttpService<B1> for Twhere T: Service<Request<B1>, Response = Response<B2>>, B2: HttpBody, T::Error: Into<Box<dyn StdError + Send + Sync>>,

§

type ResBody = B2

§

type Error = <T as Service<Request<B1>>>::Error

§

type Future = <T as Service<Request<B1>>>::Future