Crate cell

Source
Expand description

A replacement of std::cell::RefCell adding advanced support for mapping borrows.

Structsยง

  • Wraps a borrowed reference to a value in a RefCell box. A wrapper type for an immutably borrowed value from a RefCell<T>.
  • A mutable memory location with dynamically checked borrow rules
  • A wrapper type for a mutably borrowed value from a RefCell<T>.
  • A type containing a value that contains a borrowed reference to a value from a RefCell<T>.
  • A type containing a value that contains a borrowed mutable reference to a value from a RefCell<T>.