Struct cortex_m_rtfm::Local [] [src]

pub struct Local<D, T> { /* fields omitted */ }

Task local data

This data can only be accessed by the task T

Methods

impl<T, TASK> Local<T, TASK>
[src]

Creates a task local variable with some initial value

Borrows the task local data for the duration of the task

Mutably borrows the task local data for the duration of the task

Trait Implementations

impl<T, TASK> Sync for Local<T, TASK>
[src]