agde_tokio

Struct TokioTaskHandle

source
pub struct TokioTaskHandle<T>(/* private fields */);

Trait Implementations§

source§

impl<T> Future for TokioTaskHandle<T>

source§

type Output = Result<T, JoinError>

The type of value produced on completion.
source§

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

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