Struct core::cell::RefCell1.0.0 [] [src]

pub struct RefCell<T: ?Sized> {
    // some fields omitted
}

A mutable memory location with dynamically checked borrow rules

See the module-level documentation for more.

Methods

impl<T> RefCell<T>
[src]

const fn new(value: T) -> RefCell<T>

Creates a new RefCell containing value.

Examples

fn main() { use std::cell::RefCell; let c = RefCell::new(5); }
use std::cell::RefCell;

let c = RefCell::new(5);

fn into_inner(self) -> T

Consumes the RefCell, returning the wrapped value.

Examples

fn main() { use std::cell::RefCell; let c = RefCell::new(5); let five = c.into_inner(); }
use std::cell::RefCell;

let c = RefCell::new(5);

let five = c.into_inner();

impl<T: ?Sized> RefCell<T>
[src]

fn borrow_state(&self) -> BorrowState

Unstable (borrow_state #27733)

Query the current state of this RefCell

The returned value can be dispatched on to determine if a call to borrow or borrow_mut would succeed.

fn borrow(&self) -> Ref<T>

Immutably borrows the wrapped value.

The borrow lasts until the returned Ref exits scope. Multiple immutable borrows can be taken out at the same time.

Panics

Panics if the value is currently mutably borrowed.

Examples

fn main() { use std::cell::RefCell; let c = RefCell::new(5); let borrowed_five = c.borrow(); let borrowed_five2 = c.borrow(); }
use std::cell::RefCell;

let c = RefCell::new(5);

let borrowed_five = c.borrow();
let borrowed_five2 = c.borrow();

An example of panic:

fn main() { use std::cell::RefCell; use std::thread; let result = thread::spawn(move || { let c = RefCell::new(5); let m = c.borrow_mut(); let b = c.borrow(); // this causes a panic }).join(); assert!(result.is_err()); }
use std::cell::RefCell;
use std::thread;

let result = thread::spawn(move || {
   let c = RefCell::new(5);
   let m = c.borrow_mut();

   let b = c.borrow(); // this causes a panic
}).join();

assert!(result.is_err());

fn borrow_mut(&self) -> RefMut<T>

Mutably borrows the wrapped value.

The borrow lasts until the returned RefMut exits scope. The value cannot be borrowed while this borrow is active.

Panics

Panics if the value is currently borrowed.

Examples

fn main() { use std::cell::RefCell; let c = RefCell::new(5); *c.borrow_mut() = 7; assert_eq!(*c.borrow(), 7); }
use std::cell::RefCell;

let c = RefCell::new(5);

*c.borrow_mut() = 7;

assert_eq!(*c.borrow(), 7);

An example of panic:

fn main() { use std::cell::RefCell; use std::thread; let result = thread::spawn(move || { let c = RefCell::new(5); let m = c.borrow(); let b = c.borrow_mut(); // this causes a panic }).join(); assert!(result.is_err()); }
use std::cell::RefCell;
use std::thread;

let result = thread::spawn(move || {
   let c = RefCell::new(5);
   let m = c.borrow();

   let b = c.borrow_mut(); // this causes a panic
}).join();

assert!(result.is_err());

unsafe fn as_unsafe_cell(&self) -> &UnsafeCell<T>

Unstable (as_unsafe_cell #27708)

Returns a reference to the underlying UnsafeCell.

This can be used to circumvent RefCell's safety checks.

This function is unsafe because UnsafeCell's field is public.

fn get_mut(&mut self) -> &mut T

Unstable (cell_get_mut #33444)

Returns a mutable reference to the underlying data.

This call borrows RefCell mutably (at compile-time) so there is no need for dynamic checks.

Trait Implementations

impl<T: ?Sized> Send for RefCell<T> where T: Send
[src]

impl<T: ?Sized> !Sync for RefCell<T>
[src]

impl<T: Clone> Clone for RefCell<T>
[src]

fn clone(&self) -> RefCell<T>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

impl<T: Default> Default for RefCell<T>
[src]

fn default() -> RefCell<T>

Returns the "default value" for a type. Read more

impl<T: ?Sized + PartialEq> PartialEq for RefCell<T>
[src]

fn eq(&self, other: &RefCell<T>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool

This method tests for !=.

impl<T: ?Sized + Eq> Eq for RefCell<T>
1.2.0
[src]

impl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T>
1.10.0
[src]

fn partial_cmp(&self, other: &RefCell<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, other: &RefCell<T>) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, other: &RefCell<T>) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

fn gt(&self, other: &RefCell<T>) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, other: &RefCell<T>) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T: ?Sized + Ord> Ord for RefCell<T>
1.10.0
[src]

fn cmp(&self, other: &RefCell<T>) -> Ordering

This method returns an Ordering between self and other. Read more

impl<T: ?Sized + Debug> Debug for RefCell<T>
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.