Type Alias texlang::token::CsNameInterner

source ·
pub type CsNameInterner = Interner<CsName>;
Expand description

String interner for control sequence names.

Aliased Type§

struct CsNameInterner { /* private fields */ }

Implementations

§

impl<K, S> Interner<K, S>
where K: Key, S: BuildHasher,

pub fn get_or_intern(&mut self, s: &str) -> K

Intern the provided string and return its key.

pub fn get(&self, s: &str) -> Option<K>

Get the key for the provided string if it has been already been interned.

This method is useful when the caller only has a shared reference to the interner.

pub fn resolve(&self, k: K) -> Option<&str>

Return the interned string corresponding to the provided key.

Trait Implementations

§

impl<K, S> Default for Interner<K, S>
where S: Default,

§

fn default() -> Interner<K, S>

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

impl<'de, K, S> Deserialize<'de> for Interner<K, S>
where K: Key, S: Default + BuildHasher,

§

fn deserialize<D>( deserializer: D, ) -> Result<Interner<K, S>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<K, S> Serialize for Interner<K, S>

§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more