Struct std::cell::RefStable [-]  [+] [src]

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

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

Trait Implementations

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

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

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

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