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

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

Wraps a borrowed reference to a value in a RefCell box. A wrapper type for an immutably borrowed value from a RefCell<T>.

See the module-level documentation for more.

Trait Implementations

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

type Target = T

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

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

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