Struct core::cell::RefMut [] [src]

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

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

See the module-level documentation for more.

Trait Implementations

impl<'b, T: ?Sized> Deref for RefMut<'b, T>

type Target = T

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

impl<'b, T: ?Sized> DerefMut for RefMut<'b, T>

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

impl<'b, T: ?Sized + Debug> Debug for RefMut<'b, T>

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