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

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

A wrapper type for a mutably borrowed value from a RefCell<T>.

See the module-level documentation for more.

Trait Implementations

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

type Target = T

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

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

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

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

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