Type Alias rhai::Identifier

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

(internals) An identifier in Rhai. Exported under the internals feature only.

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 */ }