Struct std::cell::Ref[src]

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

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

Trait Implementations

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

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

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

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

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

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