Struct SharedFuture

struct SharedFuture<S> { ... }

Response future from Shared services.

Implementations

impl<'__pin, S> Unpin for SharedFuture<S>

impl<F> IntoFuture for SharedFuture<S>

fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture

impl<F, T, E> TryFuture for SharedFuture<S>

fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>

impl<Fut> TryFutureExt for SharedFuture<S>

impl<S> Debug for SharedFuture<S>

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

impl<S> Freeze for SharedFuture<S>

impl<S> Future for SharedFuture<S>

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>

impl<S> RefUnwindSafe for SharedFuture<S>

impl<S> Send for SharedFuture<S>

impl<S> Sync for SharedFuture<S>

impl<S> UnsafeUnpin for SharedFuture<S>

impl<S> UnwindSafe for SharedFuture<S>

impl<T> Any for SharedFuture<S>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for SharedFuture<S>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for SharedFuture<S>

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

impl<T> From for SharedFuture<S>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for SharedFuture<S>

impl<T> Instrument for SharedFuture<S>

impl<T> WithSubscriber for SharedFuture<S>

impl<T, U> Into for SharedFuture<S>

fn into(self: 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 for SharedFuture<S>

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

impl<T, U> TryInto for SharedFuture<S>

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