Enum std::cell::BorrowState
[−]
[src]
pub enum BorrowState {
Reading,
Writing,
Unused,
}Unstable
An enumeration of values returned from the state method on a RefCell<T>.
Variants
Reading | Unstable The cell is currently being read, there is at least one active |
Writing | Unstable The cell is currently being written to, there is an active |
Unused | Unstable There are no outstanding borrows on this cell. |