Type Alias mas_http::HttpService

source ·
pub type HttpService = BoxCloneSyncService<Request<Bytes>, Response<Bytes>, BoxError>;
Expand description

Type for the underlying HTTP service.

Allows implementors to use different libraries that provide a Service that implements Clone + Send + Sync.

Aliased Type§

struct HttpService(/* private fields */);

Implementations

source§

impl<T, U, E> BoxCloneSyncService<T, U, E>

source

pub fn new<S>(inner: S) -> Self
where S: Service<T, Response = U, Error = E> + Clone + Send + Sync + 'static, S::Future: Send + 'static,

Create a new BoxCloneSyncService.

Trait Implementations§

source§

impl Debug for HttpService

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, U, E> Clone for BoxCloneSyncService<T, U, E>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T, U, E> Service<T> for BoxCloneSyncService<T, U, E>

§

type Response = U

Responses given by the service.
§

type Error = E

Errors produced by the service.
§

type Future = Pin<Box<dyn Future<Output = Result<<BoxCloneSyncService<T, U, E> as Service<T>>::Response, <BoxCloneSyncService<T, U, E> as Service<T>>::Error>> + Send>>

The future response value.
source§

fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, request: T) -> Self::Future

Process the request and return the response asynchronously. Read more