forked from mirror/async-std
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
349 B
Rust
19 lines
349 B
Rust
//! Creates a task-local value.
|
|
|
|
use std::cell::Cell;
|
|
|
|
use async_std::prelude::*;
|
|
use async_std::task;
|
|
|
|
task_local! {
|
|
static VAR: Cell<i32> = Cell::new(1);
|
|
}
|
|
|
|
fn main() {
|
|
task::block_on(async {
|
|
println!("var = {}", VAR.with(|v| v.get()));
|
|
VAR.with(|v| v.set(2));
|
|
println!("var = {}", VAR.with(|v| v.get()));
|
|
})
|
|
}
|