[][src]Module solana_libra_vm::vm_string

A "VM string" is a string in Move code. VM strings can be present either within Move modules or scripts, or as arguments to transactions.

Within this code base, VM strings are represented as a different type to prevent them from mixing with other sorts of strings. For example, it is not possible to use one as an identifier for name resolution.

Structs

VMStr

A borrowed string in Move code.

VMString

An owned string in a Move transaction.