Struct tokio::task::futures::TaskLocalFuture [−][src]
pub struct TaskLocalFuture<T, F> where
T: 'static, { /* fields omitted */ }
Expand description
A future that sets a value T
of a task local for the future F
during
its execution.
The value of the task-local must be 'static
and will be dropped on the
completion of the future.
Created by the function LocalKey::scope
.
Examples
tokio::task_local! {
static NUMBER: u32;
}
NUMBER.scope(1, async move {
println!("task local value: {}", NUMBER.get());
}).await;
Trait Implementations
impl<'__pin, T, F> Unpin for TaskLocalFuture<T, F> where
__Origin<'__pin, T, F>: Unpin,
T: 'static,
Auto Trait Implementations
impl<T, F> RefUnwindSafe for TaskLocalFuture<T, F> where
F: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, F> Send for TaskLocalFuture<T, F> where
F: Send,
T: Send,
impl<T, F> Sync for TaskLocalFuture<T, F> where
F: Sync,
T: Sync,
impl<T, F> UnwindSafe for TaskLocalFuture<T, F> where
F: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?
🔬 This is a nightly-only experimental API. (
into_future
)Creates a future from a value.