futures::prelude::task

Struct LocalKey

Source
pub struct LocalKey<T> { /* private fields */ }
Expand description

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.

Implementations§

Source§

impl<T> LocalKey<T>
where T: Send + 'static,

Source

pub fn get_mut<'a>(&'static self, cx: &'a mut Context<'_>) -> &'a mut T

Access this task-local key.

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.

Trait Implementations§

Source§

impl<T> Debug for LocalKey<T>
where T: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> Freeze for LocalKey<T>

§

impl<T> RefUnwindSafe for LocalKey<T>

§

impl<T> Send for LocalKey<T>

§

impl<T> Sync for LocalKey<T>

§

impl<T> Unpin for LocalKey<T>

§

impl<T> UnwindSafe for LocalKey<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.