Expand description
Backends for the StringInterner
.
The backend is the method or strategy that handles the actual interning. There are trade-offs for the different kinds of backends. A user should find the backend that suits their use case best.
Structs§
- Bucket
Backend - An interner backend that reduces memory allocations by using string buckets.
- Buffer
Backend - An interner backend that appends all interned string information in a single buffer.
- String
Backend - An interner backend that accumulates all interned string contents into one string.
Traits§
- Backend
- Types implementing this trait may act as backends for the string interner.
Type Aliases§
- Default
Backend - The default backend recommended for general use.