pub fn same_ptr<T1: ?Sized, T2: ?Sized>(src1: &T1, src2: &T2) -> bool
Are two pointers are the same, not taking into accoint type.
Unlike std::ptr::eq() does not require arguments to have the same type.
std::ptr::eq()