pub struct SymbolPool { /* private fields */ }
Expand description

A pool of symbols. Allows to lookup a symbol by a string representation, and discover the string representation of an existing symbol. This struct does not need be mutable for operations on it, which is important so references to it can be freely passed around.

Implementations

Creates a new SymbolPool.

Looks up a symbol by its string representation. If a symbol with this representation already exists, it will be returned, otherwise a new one will be created in the pool. The implementation uses internally a RefCell for storing symbols, so the pool does not need to be mutable.

Returns the string representation of this symbol, as an rc’ed string to avoid copies. If the past symbol was not created from this pool, a runtime error may happen (or a wrong string will be returned).

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.