pub trait RefClone { // Required method fn ref_clone(&mut self) -> Self; }
Duplicate an object without deep copy, but to only add the refcount, for php refcount struct.
Returns a refcount value with same reference of the value.