Function core::cell::clone_refUnstable [-] [+] [src]

pub fn clone_ref<'b, T: Clone>(orig: &Ref<'b, T>) -> Ref<'b, T>

Copy a Ref.

The RefCell is already immutably borrowed, so this cannot fail.

A Clone implementation would interfere with the widespread use of r.borrow().clone() to clone the contents of a RefCell.