[][src]Struct actix_async_await::ResponseStdFuture

pub struct ResponseStdFuture<T> { /* fields omitted */ }

A specialized future object for async message handler

Trait Implementations

impl<F, T> From<F> for ResponseStdFuture<T> where
    F: Future<Output = T> + 'static, 
[src]

impl<A, M, T> MessageResponse<A, M> for ResponseStdFuture<T> where
    A: Actor,
    A::Context: AsyncContext<A>,
    M: Message<Result = T>,
    M::Result: Send,
    T: 'static, 
[src]

Auto Trait Implementations

impl<T> !Send for ResponseStdFuture<T>

impl<T> !Sync for ResponseStdFuture<T>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> Erased for T