Struct move_model::symbol::SymbolPool
source · [−]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
sourceimpl SymbolPool
impl SymbolPool
sourcepub fn new() -> SymbolPool
pub fn new() -> SymbolPool
Creates a new SymbolPool.
sourcepub fn make(&self, s: &str) -> Symbol
pub fn make(&self, s: &str) -> Symbol
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.
Trait Implementations
sourceimpl Debug for SymbolPool
impl Debug for SymbolPool
Auto Trait Implementations
impl !RefUnwindSafe for SymbolPool
impl !Send for SymbolPool
impl !Sync for SymbolPool
impl Unpin for SymbolPool
impl UnwindSafe for SymbolPool
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more