Enum core::cell::BorrowState
[−]
[src]
pub enum BorrowState { Reading, Writing, Unused, }
Unstable (
borrow_state
#27733)An enumeration of values returned from the state
method on a RefCell<T>
.
Variants
Reading | Unstable ( borrow_state #27733)The cell is currently being read, there is at least one active | |
Writing | Unstable ( borrow_state #27733)The cell is currently being written to, there is an active | |
Unused | Unstable ( borrow_state #27733)There are no outstanding borrows on this cell. |
Trait Implementations
Derived Implementations
impl Debug for BorrowState
impl Eq for BorrowState
impl PartialEq for BorrowState
fn eq(&self, __arg_0: &BorrowState) -> bool
Unstable (
borrow_state
#27733)fn ne(&self, other: &Rhs) -> bool
1.0.0
impl Clone for BorrowState
fn clone(&self) -> BorrowState
Unstable (
borrow_state
#27733)