Struct std::cell::RefMut[src]

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

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

Trait Implementations

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

fn drop<'b, T>(&mut self)

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

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

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

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

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

fn fmt<'b, T: Show>(&self, f: &mut Formatter) -> Result<(), FormatError>