Type Definition rhai::Identifier[][src]

type Identifier = SmartString<Compact>;

An identifier in Rhai. SmartString is used because most identifiers are ASCII and short, fewer than 23 characters, so they can be stored inline.

Trait Implementations

impl From<ImmutableString> for Identifier[src]