Struct riker::futures_util::DispatchHandle[][src]

pub struct DispatchHandle<T, E> {
    pub inner: Receiver<Result<T, E>>,
}

Fields

Trait Implementations

impl<T, E> Future for DispatchHandle<T, E> where
    T: Send + 'static,
    E: Send + Debug + 'static, 
[src]

A successful value

An error

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

impl<T, E> Send for DispatchHandle<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for DispatchHandle<T, E> where
    E: Send,
    T: Send