arc_ptr_eq

Function arc_ptr_eq 

Source
pub fn arc_ptr_eq<T>(a: &Arc<T>, b: &Arc<T>) -> bool
where T: ?Sized,
Expand description

Compares two Arc pointers for equality based on their underlying pointers values. This is not equivalent to Arc::ptr_eq for fat pointers, see that method for more information.