pub enum BorrowState {
Reading,
Writing,
Unused,
}
An enumeration of values returned from the state method on a RefCell<T>.
ReadingThe cell is currently being read, there is at least one active borrow.
WritingThe cell is currently being written to, there is an active borrow_mut.
UnusedThere are no outstanding borrows on this cell.
impl PartialEq<BorrowState> for BorrowState
[src]
fn eq(&self, __arg_0: &BorrowState) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Clone for BorrowState
[src]
fn clone(&self) -> BorrowStateReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
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]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/cell/enum.BorrowState.html