Crate weakauras_codec_lua_value

Source
Expand description

This library provides types that behave similarly to Lua types.

§Crate features

  • arbitrary - Implement arbitrary::Arbitrary for LuaValue. Disabled by default.
  • fnv - Use fnv instead of BTreeMap as the implementation of LuaValue::Map. Disabled by default.
  • indexmap - Use indexmap instead of BTreeMap as the implementation of LuaValue::Map. Disabled by default.
  • serde - Allow serializing and deserializing LuaValue using serde. Disabled by default.

Modules§

error
Error types.

Structs§

LuaMapKey
A key of a Lua map.
Map
An ordered map based on a B-Tree.

Enums§

LuaValue
A tagged union representing all possible values in Lua.