Crate pointer_identity

source ·
Expand description

Pointer Identity

Rust has some traits that operate on values:

When using smart pointers such as Arc, Rc and Box in Rust, these will forward the implementation to the underlying types. Generally speaking, this makes sense and is the intended behavior.

However, in some cases this might not be what you need. For example, in some cases where you have a cache of reference-counted values, you may want it to determine if two values are the same just by looking at their pointer address rather than inspecting the value.

This crate lets you achieve that by offering a wrapper type, PointerIdentity, that you can use to wrap any value which implements Pointer to get it to use the pointer address as identity for comparisons and hashing rather than the value of the data it is holding.

Structs

Traits

  • Type that stores its value in an allocation and can retrieve a pointer to the value.