[src]

Module std::cell

Types dealing with dynamic mutability

Cell

A mutable memory location that admits only Copy data.

Ref

Wraps a borrowed reference to a value in a RefCell box.

RefCell

A mutable memory location with dynamically checked borrow rules

RefMut

Wraps a mutable borrowed reference to a value in a RefCell box.