Struct gc::GcCellRefMut [] [src]

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

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

Trait Implementations

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

The resulting type after dereferencing

The method called to dereference a value

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

The method called to mutably dereference a value

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

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

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

Formats the value using the given formatter.