struct BigInternedDataTraits
Defined at line 76 of file ../../third_party/perfetto/include/perfetto/tracing/track_event_interned_data_index.h
By default, the interning index stores a full copy of the interned data. This
ensures the same data is always mapped to the same interning id, and there is
no danger of collisions. This comes at the cost of memory usage, however, so
consider using HashedInternedDataTraits if that may be an issue.
This type of index also performs hashing on the stored data for lookups; for
types where this isn't necessary (e.g., raw const char*), use
SmallInternedDataTraits.