Struct exc_core::Exc

source ·
pub struct Exc<C, Req> { /* private fields */ }
Expand description

The core service wrapper of this crate, which implements ExcService<T> if the request type of the underlying service implements Adaptor<T>.

With the help of Exc, we can use a single type to represent all the services that an exchange can provide.

For example, let Exchange be an api endpoint implementation of a exchange, which implements [Service<R>], where R is the request type of the api endpoint. Then Exc<Exchange, R> will implement Service<SubscribeTickers> and Service<PlaceOrder>, as long as R implements both Adaptor<SubscribeTickers> and Adaptor<PlaceOrder>.

Implementations§

source§

impl<C, Req> Exc<C, Req>

source

pub fn into_inner(self) -> C

Into the inner channel.

source§

impl<C, Req> Exc<C, Req>
where Req: Request, C: ExcService<Req>,

source

pub fn new(service: C) -> Exc<C, Req>

Create from the given ExcService.

source

pub async fn request( &mut self, request: Req ) -> Result<<Req as Request>::Response, ExchangeError>

Make a request using the underlying channel directly.

source

pub fn into_rate_limited( self, num: u64, per: Duration ) -> Exc<RateLimit<IntoService<C, Req>>, Req>

Apply rate-limit layer to the channel.

source

pub fn into_retry( self, max_duration: Duration ) -> Exc<Retry<Always, IntoService<C, Req>>, Req>
where Req: Clone, C: Clone,

Apply retry layer to the channel.

source

pub fn into_adapted<R>(self) -> Exc<Adapt<IntoService<C, Req>, Req, R>, R>
where R: Request, IntoService<C, Req>: AdaptService<Req, R>,

Adapt the request type of the underlying channel to the target type R.

source

pub fn into_layered<T, R>( self, layer: &T ) -> Exc<<T as Layer<IntoService<C, Req>>>::Service, R>
where T: Layer<IntoService<C, Req>>, R: Request, <T as Layer<IntoService<C, Req>>>::Service: ExcService<R>,

Apply a layer to the underlying channel.

Trait Implementations§

source§

impl<C, Req> Clone for Exc<C, Req>
where C: Clone,

source§

fn clone(&self) -> Exc<C, Req>

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<C, Req> Debug for Exc<C, Req>
where C: Debug, Req: Debug,

source§

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

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

impl<C, Req, R> Service<R> for Exc<C, Req>
where R: Request, <R as Request>::Response: Send + 'static, Req: Adaptor<R>, C: ExcService<Req>, <C as ExcService<Req>>::Future: Send + 'static,

§

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<<Exc<C, Req> as Service<R>>::Response, <Exc<C, Req> as Service<R>>::Error>> + Send>>

The future response value.
source§

fn poll_ready( &mut self, cx: &mut Context<'_> ) -> Poll<Result<(), <Exc<C, Req> as Service<R>>::Error>>

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

fn call(&mut self, req: R) -> <Exc<C, Req> as Service<R>>::Future

Process the request and return the response asynchronously. Read more

Auto Trait Implementations§

§

impl<C, Req> RefUnwindSafe for Exc<C, Req>
where C: RefUnwindSafe,

§

impl<C, Req> Send for Exc<C, Req>
where C: Send,

§

impl<C, Req> Sync for Exc<C, Req>
where C: Sync,

§

impl<C, Req> Unpin for Exc<C, Req>
where C: Unpin,

§

impl<C, Req> UnwindSafe for Exc<C, Req>
where C: UnwindSafe,

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 as Layer<Self>>::Service
where Self: Sized, R2: Request, L: Layer<Self>, <L as Layer<Self>>::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 rate_limited( self, num: u64, per: Duration ) -> RateLimit<IntoService<Self, R>>
where Self: Sized,

Apply a rate-limit layer to the service.
source§

fn retry(self, max_duration: Duration) -> Retry<Always, IntoService<Self, R>>
where R: Clone, Self: Sized + Clone,

Apply a retry layer to the service.
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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<M, S, Target, Request> MakeService<Target, Request> for M
where M: Service<Target, Response = S>, S: Service<Request>,

§

type Response = <S as Service<Request>>::Response

Responses given by the service
§

type Error = <S as Service<Request>>::Error

Errors produced by the service
§

type Service = S

The Service value created by this factory
§

type MakeError = <M as Service<Target>>::Error

Errors produced while building a service.
§

type Future = <M as Service<Target>>::Future

The future of the Service instance.
source§

fn poll_ready( &mut self, cx: &mut Context<'_> ) -> Poll<Result<(), <M as MakeService<Target, Request>>::MakeError>>

Returns Ready when the factory is able to create more services. Read more
source§

fn make_service( &mut self, target: Target ) -> <M as MakeService<Target, Request>>::Future

Create and return a new service value asynchronously.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more