struct HashedInternedDataTraits
Defined at line 125 of file ../../third_party/perfetto/include/perfetto/tracing/track_event_interned_data_index.h
This type of interning index only stores the hash of the interned values
instead of the values themselves. This is more efficient in terms of memory
usage, but assumes that there are no hash collisions. If a hash collision
occurs, two or more values will be mapped to the same interning id.
Note that the given type must have a specialization for std::hash.