[][src]Crate bo_cell

  • A BoCell is simply a limited version of the standard RefCell which borrows its contents rather than owning them. This can be useful in cases where the internal mutability and referencing properties of a RefCell are necessary to appease the borrow-checker but only within the context of, for example, a single method or trait implementation.

Structs

BoCell

A RefCell like structure which may be coerced from a &mut

BorrowError

An error returned by try_borrow.

RefMut