Enum std::cell::BorrowState
[−]
[src]
pub enum BorrowState { Reading, Writing, Unused, }
Deprecated since 1.15.0
: use try_borrow
instead
An enumeration of values returned from the state
method on a RefCell<T>
.
Variants
Reading
Deprecated since 1.15.0
: use try_borrow
instead
The cell is currently being read, there is at least one active borrow
.
Writing
Deprecated since 1.15.0
: use try_borrow
instead
The cell is currently being written to, there is an active borrow_mut
.
Unused
Deprecated since 1.15.0
: use try_borrow
instead
There are no outstanding borrows on this cell.
Trait Implementations
impl Eq for BorrowState
[src]
impl Debug for BorrowState
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Copy for BorrowState
[src]
impl Clone for BorrowState
[src]
fn clone(&self) -> BorrowState
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more