Expand description
The Tock Cell types.
This is a re-export of the tock-cells crate provided for convenience.
To use TakeCell, for example, users should use:
use kernel::utilities::cells::TakeCell;Structs§
- A mutable, possibly unset, memory location that provides checked
&mutaccess to its contents via a closure. OptionalCellis aCellthat wraps anOption. This is helper type that makes keeping types that can beNonea little cleaner.- A shared reference to a mutable reference.
VolatileCellprovides a wrapper around unsafe volatile pointer reads and writes.