Struct std::cell::RefMut [] [src]

pub struct RefMut<'b, T> where T: 'b + ?Sized {
    // 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> Deref for RefMut<'b, T> where T: ?Sized

type Target = T

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

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

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

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

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