Struct tower::util::future::AndThenFuture[][src]

pub struct AndThenFuture<F1, F2: TryFuture, N>(_);
This is supported on crate feature util only.

Response future from AndThen services.

Trait Implementations

impl<F1, F2: TryFuture, N> Debug for AndThenFuture<F1, F2, N>[src]

impl<F1, F2: TryFuture, N> Future for AndThenFuture<F1, F2, N> where
    AndThen<ErrInto<F1, F2::Error>, F2, N>: Future
[src]

type Output = <AndThen<ErrInto<F1, F2::Error>, F2, N> as Future>::Output

The type of value produced on completion.

impl<'pin, F1, F2: TryFuture, N> Unpin for AndThenFuture<F1, F2, N> where
    __AndThenFuture<'pin, F1, F2, N>: Unpin
[src]

Auto Trait Implementations

impl<F1, F2, N> RefUnwindSafe for AndThenFuture<F1, F2, N> where
    F1: RefUnwindSafe,
    F2: RefUnwindSafe,
    N: RefUnwindSafe

impl<F1, F2, N> Send for AndThenFuture<F1, F2, N> where
    F1: Send,
    F2: Send,
    N: Send

impl<F1, F2, N> Sync for AndThenFuture<F1, F2, N> where
    F1: Sync,
    F2: Sync,
    N: Sync

impl<F1, F2, N> UnwindSafe for AndThenFuture<F1, F2, N> where
    F1: UnwindSafe,
    F2: UnwindSafe,
    N: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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