Struct TowerToHyperServiceFuture

pub struct TowerToHyperServiceFuture<S, R>
where
    S: Service<R>, { /* private fields */ }

Response future for TowerToHyperService.

This future is acquired by [call][hyper::service::Service::call]ing a TowerToHyperService.

Trait Implementations

impl<'__pin, S, R> Unpin for TowerToHyperServiceFuture<S, R> where PinnedFieldsOf<__Origin<'__pin, S, R>>: Unpin, S: Service<R>,

impl<S, R> Future for TowerToHyperServiceFuture<S, R> where S: Service<R>,

type Output = Result<<S as Service<R>>::Response, <S as Service<R>>::Error>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>

Auto Trait Implementations

impl<S, R> Freeze for TowerToHyperServiceFuture<S, R> where Oneshot<S, R>: Freeze,

impl<S, R> RefUnwindSafe for TowerToHyperServiceFuture<S, R> where Oneshot<S, R>: RefUnwindSafe,

impl<S, R> Send for TowerToHyperServiceFuture<S, R> where Oneshot<S, R>: Send,

impl<S, R> Sync for TowerToHyperServiceFuture<S, R> where Oneshot<S, R>: Sync,

impl<S, R> UnsafeUnpin for TowerToHyperServiceFuture<S, R> where Oneshot<S, R>: UnsafeUnpin,

impl<S, R> UnwindSafe for TowerToHyperServiceFuture<S, R> where Oneshot<S, R>: UnwindSafe,

Blanket Implementations

impl<F> IntoFuture for TowerToHyperServiceFuture<S, R> where F: Future,

type Output = <F as Future>::Output;
type IntoFuture = F;
fn into_future(self) -> <F as IntoFuture>::IntoFuture

impl<F, T, E> TryFuture for TowerToHyperServiceFuture<S, R> where F: Future<Output = Result<T, E>> + ?Sized,

type Ok = T;
type Error = E;
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>

impl<Fut> TryFutureExt for TowerToHyperServiceFuture<S, R> where Fut: TryFuture + ?Sized,

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

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for TowerToHyperServiceFuture<S, R> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for TowerToHyperServiceFuture<S, R> where T: ?Sized,

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

impl<T> From<T> for TowerToHyperServiceFuture<S, R>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for TowerToHyperServiceFuture<S, R> where T: Future + ?Sized,

impl<T> FutureExt for TowerToHyperServiceFuture<S, R> where T: Future + ?Sized,

impl<T> Instrument for TowerToHyperServiceFuture<S, R>

impl<T> WithSubscriber for TowerToHyperServiceFuture<S, R>

impl<T, U> Into<U> for TowerToHyperServiceFuture<S, R> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

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

impl<T, U> TryFrom<U> for TowerToHyperServiceFuture<S, R> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for TowerToHyperServiceFuture<S, R> where U: TryFrom<T>,

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