Struct string_interner::backend::BufferBackend [−][src]
pub struct BufferBackend<S = DefaultSymbol> { /* fields omitted */ }
Expand description
An interner backend that appends all interned string information in a single buffer.
Usage Hint
Use this backend if memory consumption is what matters most to you. Note though that unlike all other backends symbol values are not contigous!
Usage
- Fill: Efficiency of filling an empty string interner.
- Resolve: Efficiency of interned string look-up given a symbol.
- Allocations: The number of allocations performed by the backend.
- Footprint: The total heap memory consumed by the backend.
- Contiguous: True if the returned symbols have contiguous values.
Rating varies between bad, ok, good and best.
Scenario | Rating |
---|---|
Fill | best |
Resolve | bad |
Allocations | best |
Footprint | best |
Supports get_or_intern_static | no |
Send + Sync | yes |
Contiguous | no |
Trait Implementations
type Symbol = S
type Symbol = S
The symbol used by the string interner backend.
Creates a new backend for the given capacity. Read more
Interns the given string and returns its interned ref and symbol. Read more
Resolves the given symbol to its original string contents.
Shrink backend capacity to fit interned symbols exactly.
Resolves the given symbol to its original string contents. Read more
Interns the given static string and returns its interned ref and symbol. Read more
Auto Trait Implementations
impl<S> RefUnwindSafe for BufferBackend<S>
impl<S> Send for BufferBackend<S>
impl<S> Sync for BufferBackend<S>
impl<S> Unpin for BufferBackend<S>
impl<S> UnwindSafe for BufferBackend<S>
Blanket Implementations
Mutably borrows from an owned value. Read more