Structs§
- Borrow
- A wrapper for a value “borrowed” from a
MoveCell
. When the wrapper is dropped, the value is returned to the cell automatically. - Move
Cell - A container similar to
std::cell::Cell
, but that also supports not-implicitly-copyable types.