Re-exports

pub use error::Error;
pub use error::ErrorKind;
pub use error::Result;
pub use language::Bytes;
pub use language::Insn;
pub use language::Location;
pub use language::Map;
pub use language::Token;
pub use language::Value;
pub use vm::VM;

Modules

Macros

Creates an array Value consisting of the arguments.

Creates an object Value consisting of the given key-value pairs. The key must be an identifier or an expression that implements ToBytes surrounded by [ and ]. The value must be any expression of type Value.

Traits

A type that can be converted directly from and to Value. This is different from From and Into in that the values of these these types are “identical” to Value.

A type that can be converted to Bytes.