[−][src]Struct futures::task::LocalKey
A key for task-local data stored in a future's task.
This type is generated by the task_local!
macro and performs very
similarly to the thread_local!
macro and std::thread::LocalKey
types.
Data associated with a LocalKey<T>
is stored inside of a future's task,
and the data is destroyed when the future is completed and the task is
destroyed.
Task-local data can migrate between threads and hence requires a Send
bound. Additionally, task-local data also requires the 'static
bound to
ensure it lives long enough. When a key is accessed for the first time the
task's data is initialized with the provided initialization expression to
the macro.
Methods
impl<T: Send + 'static> LocalKey<T>
[src]
impl<T: Send + 'static> LocalKey<T>
pub fn with<F, R>(&'static self, f: F) -> R where
F: FnOnce(&T) -> R,
[src]
pub fn with<F, R>(&'static self, f: F) -> R where
F: FnOnce(&T) -> R,
Access this task-local key, running the provided closure with a reference to the value.
This function will access this task-local key to retrieve the data
associated with the current task and this key. If this is the first time
this key has been accessed on this task, then the key will be
initialized with the initialization expression provided at the time the
task_local!
macro was called.
The provided closure will be provided a shared reference to the underlying data associated with this task-local-key. The data itself is stored inside of the current task.
Panics
This function can possibly panic for a number of reasons:
- If there is not a current task.
- If the initialization expression is run and it panics
- If the closure provided panics
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more