pub struct SharedStringInterner { /* private fields */ }Expand description
An implementation of StringInternerTrait using the project’s shared string-interner.
This struct provides a way to interact with the global, shared string interner
(simple::INTERNER) for benchmarking purposes.
Implementations§
Trait Implementations§
Source§fn resolve(&self, symbol: &Self::Symbol) -> String
fn resolve(&self, symbol: &Self::Symbol) -> String
Resolves a DefaultSymbol back to its original string using the shared string-interner.
This method acquires a read lock on the shared interner to perform the resolution operation.
§Arguments
symbol- TheDefaultSymbolto resolve.
§Returns
An owned String corresponding to the resolved symbol.
§Panics
Panics if the symbol cannot be resolved, which indicates an inconsistency (e.g., a symbol was created by an interner other than the shared one).
Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more