Trait tower_util::ServiceExt[][src]

pub trait ServiceExt<Request>: Service<Request> {
    fn ready(&mut self) -> Ready<'_, Self, Request>

Notable traits for Ready<'a, T, Request>

impl<'a, T, Request> Future for Ready<'a, T, Request> where
    T: Service<Request>, 
type Output = Result<(), T::Error>;

    where
        Self: Sized
, { ... }
fn ready_and(&mut self) -> ReadyAnd<'_, Self, Request>

Notable traits for ReadyAnd<'a, T, Request>

impl<'a, T, Request> Future for ReadyAnd<'a, T, Request> where
    T: Service<Request>, 
type Output = Result<&'a mut T, T::Error>;

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

Notable traits for ReadyOneshot<T, Request>

impl<T, Request> Future for ReadyOneshot<T, Request> where
    T: Service<Request>, 
type Output = Result<T, T::Error>;

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

Notable traits for Oneshot<S, Req>

impl<S, Req> Future for Oneshot<S, Req> where
    S: Service<Req>, 
type Output = Result<S::Response, S::Error>;

    where
        Self: Sized
, { ... }
fn call_all<S>(self, reqs: S) -> CallAll<Self, S>
    where
        Self: Sized,
        Self::Error: Into<Error>,
        S: Stream<Item = Request>
, { ... } }

An extension trait for Services that provides a variety of convenient adapters

Provided methods

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

Notable traits for Ready<'a, T, Request>

impl<'a, T, Request> Future for Ready<'a, T, Request> where
    T: Service<Request>, 
type Output = Result<(), T::Error>;
where
    Self: Sized
[src]

👎 Deprecated since 0.3.1:

prefer ready_and which yields the service

Resolves when the service is ready to accept a request.

fn ready_and(&mut self) -> ReadyAnd<'_, Self, Request>

Notable traits for ReadyAnd<'a, T, Request>

impl<'a, T, Request> Future for ReadyAnd<'a, T, Request> where
    T: Service<Request>, 
type Output = Result<&'a mut T, T::Error>;
where
    Self: Sized
[src]

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

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

Notable traits for ReadyOneshot<T, Request>

impl<T, Request> Future for ReadyOneshot<T, Request> where
    T: Service<Request>, 
type Output = Result<T, T::Error>;
where
    Self: Sized
[src]

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

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

Notable traits for Oneshot<S, Req>

impl<S, Req> Future for Oneshot<S, Req> where
    S: Service<Req>, 
type Output = Result<S::Response, S::Error>;
where
    Self: Sized
[src]

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

fn call_all<S>(self, reqs: S) -> CallAll<Self, S> where
    Self: Sized,
    Self::Error: Into<Error>,
    S: Stream<Item = Request>, 
[src]

Process all requests from the given Stream, and produce a Stream of their responses.

This is essentially Stream<Item = Request> + Self => Stream<Item = Response>. See the documentation for CallAll for details.

Loading content...

Implementors

impl<T: ?Sized, Request> ServiceExt<Request> for T where
    T: Service<Request>, 
[src]

Loading content...