pub struct BoxExcService<R>
where R: Request,
{ /* private fields */ }
Expand description

Boxed ExcService.

Trait Implementations§

source§

impl<R> Debug for BoxExcService<R>
where R: Request + Debug, R::Response: Debug,

source§

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

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

impl<R> Service<R> for BoxExcService<R>
where R: Request,

§

type Response = <R as Request>::Response

Responses given by the service.
§

type Error = ExchangeError

Errors produced by the service.
§

type Future = Pin<Box<dyn Future<Output = Result<<BoxExcService<R> as Service<R>>::Response, <BoxExcService<R> as Service<R>>::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, req: R) -> Self::Future

Process the request and return the response asynchronously. Read more

Auto Trait Implementations§

§

impl<R> !RefUnwindSafe for BoxExcService<R>

§

impl<R> Send for BoxExcService<R>

§

impl<R> !Sync for BoxExcService<R>

§

impl<R> Unpin for BoxExcService<R>

§

impl<R> !UnwindSafe for BoxExcService<R>

Blanket Implementations§

source§

impl<C, Req, R> AdaptService<Req, R> for C
where Req: Request + Adaptor<R>, R: Request, C: ExcService<Req>,

§

type AdaptedResponse = AndThen<<C as ExcService<Req>>::Future, fn(_: <Req as Request>::Response) -> Result<<R as Request>::Response, ExchangeError>>

Future returned by [AdaptService::into_response].
source§

fn adapt_from_request(&mut self, req: R) -> Result<Req, ExchangeError>

Adapt the request.
source§

fn adapt_into_response( &mut self, res: <C as ExcService<Req>>::Future ) -> <C as AdaptService<Req, R>>::AdaptedResponse

Adapt the response future
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<S, R> ExcService<R> for S
where S: Service<R, Response = <R as Request>::Response, Error = ExchangeError>, R: Request,

§

type Future = <S as Service<R>>::Future

The future response value.
source§

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

See [Service::poll_ready] for more details.
source§

fn call(&mut self, req: R) -> <S as ExcService<R>>::Future

See [Service::call] for more details.
source§

fn as_service(&mut self) -> AsService<'_, Self, R>
where Self: Sized,

Convert to a [Service].
source§

impl<S, R> ExcServiceExt<R> for S
where S: ExcService<R>, R: Request,

source§

fn into_service(self) -> IntoService<Self, R>
where Self: Sized,

Convert into a [Service].
source§

fn apply<L, R2>(self, layer: &L) -> L::Service
where Self: Sized, R2: Request, L: Layer<Self>, L::Service: ExcService<R2>,

Apply a layer of which the result service is still a ExcService.
source§

fn adapt<R2>(self) -> Adapt<Self, R, R2>
where Self: Sized + AdaptService<R, R2>, R2: Request,

Adapt the request type to the given.
source§

fn boxed(self) -> BoxExcService<R>
where Self: Sized + Send + 'static, R: Send + 'static, Self::Future: Send + 'static,

Create a boxed ExcService.
source§

fn boxed_clone(&self) -> BoxCloneExcService<R>
where R: Send + 'static, Self: Sized + Clone + Send + 'static, Self::Future: Send + 'static,

Create a boxed ExcService with Clone.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<S, R> IntoExc<R> for S
where S: Service<R, Response = <R as Request>::Response>, <S as Service<R>>::Error: Into<ExchangeError>, R: Request,

source§

fn into_exc(self) -> Exc<MapErr<Self, fn(_: Self::Error) -> ExchangeError>, R>
where Self: Sized,

Convert into a Exc.
source§

impl<T, Request> ServiceExt<Request> for T
where T: Service<Request> + ?Sized,

source§

fn ready(&mut self) -> Ready<'_, Self, Request>
where Self: Sized,

Yields a mutable reference to the service when it is ready to accept a request.
source§

fn ready_and(&mut self) -> Ready<'_, Self, Request>
where Self: Sized,

👎Deprecated since 0.4.6: please use the ServiceExt::ready method instead
Yields a mutable reference to the service when it is ready to accept a request.
source§

fn ready_oneshot(self) -> ReadyOneshot<Self, Request>
where Self: Sized,

Yields the service when it is ready to accept a request.
source§

fn oneshot(self, req: Request) -> Oneshot<Self, Request>
where Self: Sized,

Consume this Service, calling with the providing request once it is ready.
source§

fn call_all<S>(self, reqs: S) -> CallAll<Self, S>
where Self: Sized, Self::Error: Into<Box<dyn Error + Send + Sync>>, S: Stream<Item = Request>,

Process all requests from the given Stream, and produce a Stream of their responses. Read more
source§

fn and_then<F>(self, f: F) -> AndThen<Self, F>
where Self: Sized, F: Clone,

Executes a new future after this service’s future resolves. This does not alter the behaviour of the poll_ready method. Read more
source§

fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
where Self: Sized, F: FnOnce(Self::Response) -> Response + Clone,

Maps this service’s response value to a different value. This does not alter the behaviour of the poll_ready method. Read more
source§

fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
where Self: Sized, F: FnOnce(Self::Error) -> Error + Clone,

Maps this service’s error value to a different value. This does not alter the behaviour of the poll_ready method. Read more
source§

fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
where Self: Sized, Error: From<Self::Error>, F: FnOnce(Result<Self::Response, Self::Error>) -> Result<Response, Error> + Clone,

Maps this service’s result type (Result<Self::Response, Self::Error>) to a different value, regardless of whether the future succeeds or fails. Read more
source§

fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
where Self: Sized, F: FnMut(NewRequest) -> Request,

Composes a function in front of the service. Read more
source§

fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
where Self: Sized, Error: From<Self::Error>, F: FnOnce(Result<Self::Response, Self::Error>) -> Fut + Clone, Fut: Future<Output = Result<Response, Error>>,

Composes an asynchronous function after this service. Read more
source§

fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
where Self: Sized, F: FnMut(Self::Future) -> Fut, Error: From<Self::Error>, Fut: Future<Output = Result<Response, Error>>,

Composes a function that transforms futures produced by the service. Read more
source§

fn boxed(self) -> BoxService<Request, Self::Response, Self::Error>
where Self: Sized + Send + 'static, Self::Future: Send + 'static,

Convert the service into a Service + Send trait object. Read more
source§

fn boxed_clone(self) -> BoxCloneService<Request, Self::Response, Self::Error>
where Self: Clone + Sized + Send + 'static, Self::Future: Send + 'static,

Convert the service into a Service + Clone + Send trait object. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.