Type Alias rhai::Identifier

source ·
pub type Identifier = SmartString<LazyCompact>;
Expand description

An identifier in Rhai.

Identifiers are assumed to be all-ASCII and short with few exceptions.

SmartString is used as the underlying storage type because most identifiers can be stored inline.

Aliased Type§

struct Identifier { /* private fields */ }