Struct gc::GcCellRefMut [] [src]

pub struct GcCellRefMut<'a, T: Trace + ?Sized + 'static> {
    // some fields omitted
}

A wrapper type for a mutably borrowed value from a GcCell

Trait Implementations

impl<'a, T: Trace + ?Sized> Deref for GcCellRefMut<'a, T>
[src]

type Target = T

The resulting type after dereferencing

fn deref(&self) -> &T

The method called to dereference a value

impl<'a, T: Trace + ?Sized> DerefMut for GcCellRefMut<'a, T>
[src]

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

The method called to mutably dereference a value

impl<'a, T: Trace + ?Sized> Drop for GcCellRefMut<'a, T>
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more