pub trait RefClone {
    fn ref_clone(&mut self) -> Self;
}
Expand description

Duplicate an object without deep copy, but to only add the refcount, for php refcount struct.

Required Methods

Implementors