Struct string_interner::backend::StringBackend [−][src]
pub struct StringBackend<S> { /* fields omitted */ }
Expand description
An interner backend that appends all interned strings together.
Note
Implementation inspired by CAD97’s research
project strena
.
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.
Rating varies between bad, ok and good.
Scenario | Rating |
---|---|
Fill | good |
Resolve | bad |
Allocations | good |
Footprint | good |
Supports get_or_intern_static | no |
Send + Sync | yes |
Trait Implementations
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 StringBackend<S>
impl<S> Send for StringBackend<S>
impl<S> Sync for StringBackend<S>
impl<S> Unpin for StringBackend<S>
impl<S> UnwindSafe for StringBackend<S>
Blanket Implementations
Mutably borrows from an owned value. Read more