Struct std::cell::RefMutStable [-]  [+] [src]

pub struct RefMut<'b, T: 'b> {
    // some fields omitted
}

Wraps a mutable borrowed reference to a value in a RefCell box.

Trait Implementations

impl<'b, T> Deref<T> for RefMut<'b, T>

fn deref(&'a self) -> &'a T

impl<'b, T> DerefMut<T> for RefMut<'b, T>

fn deref_mut(&'a mut self) -> &'a mut T

impl<'b, T: Show> Show for RefMut<'b, T>

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