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

pub struct RefMut<'b, T> where 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 self) -> &'a T

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

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

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

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